From: Magnus Hagander Date: Mon, 13 Dec 2010 12:30:40 +0000 (+0000) Subject: Specify the version number as a string, to avoid having PHP X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=663411bfb2aed10af3c1a991fe24549d619329f1;p=pgweb-old.git Specify the version number as a string, to avoid having PHP truncate it to "9" in some URLs. It still compares fine in the SQL queries and range comparisons, because it'll automatically get converted to a decimal number when used as such. git-svn-id: file:///Users/dpage/pgweb/svn-repo/trunk@2779 8f5c7a92-453e-0410-a47f-ad33c8a6b003 --- diff --git a/portal/system/global/settings.php b/portal/system/global/settings.php index a8ddf323..c019f42c 100644 --- a/portal/system/global/settings.php +++ b/portal/system/global/settings.php @@ -14,7 +14,7 @@ $_SETTINGS['masterserver'] = "http://wwwmaster.postgresql.org"; $_SETTINGS['defaultlanguage'] = "en"; $_SETTINGS['notifymail'] = "pgsql-slavestothewww@postgresql.org"; $_SETTINGS['bugsmail'] = "pgsql-bugs@postgresql.org"; -$_SETTINGS['current_docs_version'] = 9.0; +$_SETTINGS['current_docs_version'] = '9.0'; $_SETTINGS['beta_docs_version'] = 9.1; $_SETTINGS['ftp_root'] = "/home/ftp/";