From: Rotem Liss Date: Mon, 22 Jan 2007 08:34:56 +0000 (+0000) Subject: The support for time-limited protection isn't 'future' anymore. X-Git-Tag: 1.31.0-rc.0~54238 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=d530e2ef66db1de775319f1941e43042affe9df6;p=lhc%2Fweb%2Fwiklou.git The support for time-limited protection isn't 'future' anymore. --- diff --git a/maintenance/archives/patch-page_restrictions.sql b/maintenance/archives/patch-page_restrictions.sql index 8805c2f866..eb80527772 100644 --- a/maintenance/archives/patch-page_restrictions.sql +++ b/maintenance/archives/patch-page_restrictions.sql @@ -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), diff --git a/maintenance/tables.sql b/maintenance/tables.sql index 133b680368..af653fb3ae 100644 --- a/maintenance/tables.sql +++ b/maintenance/tables.sql @@ -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),