The support for time-limited protection isn't 'future' anymore.
authorRotem Liss <rotem@users.mediawiki.org>
Mon, 22 Jan 2007 08:34:56 +0000 (08:34 +0000)
committerRotem Liss <rotem@users.mediawiki.org>
Mon, 22 Jan 2007 08:34:56 +0000 (08:34 +0000)
maintenance/archives/patch-page_restrictions.sql
maintenance/tables.sql

index 8805c2f..eb80527 100644 (file)
@@ -10,7 +10,7 @@ CREATE TABLE /*$wgDBprefix*/page_restrictions (
        pr_cascade tinyint(4) NOT NULL,
        -- Field for future support of per-user restriction.
        pr_user int(8) NULL,
-       -- Field for future support of time-limited protection.
+       -- Field for time-limited protection.
        pr_expiry char(14) binary NULL,
 
        PRIMARY KEY  (pr_page,pr_type),
index 133b680..af653fb 100644 (file)
@@ -1087,7 +1087,7 @@ CREATE TABLE /*$wgDBprefix*/page_restrictions (
   pr_cascade tinyint(4) NOT NULL,
   -- Field for future support of per-user restriction.
   pr_user int(8) NULL,
-  -- Field for future support of time-limited protection.
+  -- Field for time-limited protection.
   pr_expiry char(14) binary NULL,
 
   PRIMARY KEY (pr_page,pr_type),