From: <var...@us...> - 2023-07-13 16:57:25
|
Revision: 11044 http://sourceforge.net/p/phpwiki/code/11044 Author: vargenau Date: 2023-07-13 16:57:23 +0000 (Thu, 13 Jul 2023) Log Message: ----------- Prepare for PhpWiki 1.7.0: require at least PHP 7.4 Modified Paths: -------------- trunk/INSTALL trunk/Makefile trunk/index.php trunk/lib/main.php trunk/lib/prepend.php trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/sv.po trunk/locale/po/zh.po Modified: trunk/INSTALL =================================================================== --- trunk/INSTALL 2023-07-13 10:04:24 UTC (rev 11043) +++ trunk/INSTALL 2023-07-13 16:57:23 UTC (rev 11044) @@ -1,7 +1,7 @@ REQUIREMENTS -PhpWiki 1.6.2 requires a web server with at least PHP version 5.3.3. -PhpWiki 1.6.2 should work for all PHP releases from 5.3.3 to 8.2.x. +PhpWiki 1.7.0 requires a web server with at least PHP version 7.4.0. +PhpWiki 1.7.0 should work for all PHP releases from 7.4.0 to 8.2.x. Visit <http://www.php.net> and <http://php.net/downloads.php> for downloads and information. @@ -113,7 +113,7 @@ Unzip this file into the directory where you want it to live. That's it. -bash$ unzip phpwiki-1.6.2.zip +bash$ unzip phpwiki-1.7.0.zip In the config subdirectory copy 'config-dist.ini' to 'config.ini' and edit the settings in 'config.ini' to your liking. Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2023-07-13 10:04:24 UTC (rev 11043) +++ trunk/Makefile 2023-07-13 16:57:23 UTC (rev 11044) @@ -1,4 +1,4 @@ -VERSION=1.6.2 +VERSION=1.7.0 RPMBUILD=rpmbuild clean: Modified: trunk/index.php =================================================================== --- trunk/index.php 2023-07-13 10:04:24 UTC (rev 11043) +++ trunk/index.php 2023-07-13 16:57:23 UTC (rev 11044) @@ -35,8 +35,8 @@ require_once(dirname(__FILE__) . '/lib/IniConfig.php'); IniConfig(dirname(__FILE__) . "/config/config.ini"); -if (version_compare(PHP_VERSION, '5.3.3', '<')) { - exit(_("Your PHP version is too old. You must have at least PHP 5.3.3.")); +if (version_compare(PHP_VERSION, '7.4.0', '<')) { + exit(_("Your PHP version is too old. You must have at least PHP 7.4.0.")); } //////////////////////////////////////////////////////////////// Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2023-07-13 10:04:24 UTC (rev 11043) +++ trunk/lib/main.php 2023-07-13 16:57:23 UTC (rev 11044) @@ -1493,8 +1493,8 @@ function main() { - if (version_compare(PHP_VERSION, '5.3.3', '<')) { - exit(_("Your PHP version is too old. You must have at least PHP 5.3.3.")); + if (version_compare(PHP_VERSION, '7.4.0', '<')) { + exit(_("Your PHP version is too old. You must have at least PHP 7.4.0.")); } if (!USE_DB_SESSION) { Modified: trunk/lib/prepend.php =================================================================== --- trunk/lib/prepend.php 2023-07-13 10:04:24 UTC (rev 11043) +++ trunk/lib/prepend.php 2023-07-13 16:57:23 UTC (rev 11044) @@ -29,7 +29,7 @@ * Things which must be done and defined before anything else. */ -define('PHPWIKI_VERSION', '1.6.2'); +define('PHPWIKI_VERSION', '1.7.0'); // A new php-5.1.x feature: Turn off php-5.1.x auto_globals_jit = On, or use this mess below. if (empty($GLOBALS['HTTP_SERVER_VARS'])) { Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2023-07-13 10:04:24 UTC (rev 11043) +++ trunk/locale/po/de.po 2023-07-13 16:57:23 UTC (rev 11044) @@ -20,7 +20,7 @@ msgid "CategoryGroup" msgstr "KategorieGruppen" -msgid "Your PHP version is too old. You must have at least PHP 5.3.3." +msgid "Your PHP version is too old. You must have at least PHP 7.4.0." msgstr "" msgid "BAD semantic relation link" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2023-07-13 10:04:24 UTC (rev 11043) +++ trunk/locale/po/es.po 2023-07-13 16:57:23 UTC (rev 11044) @@ -25,7 +25,7 @@ msgid "CategoryGroup" msgstr "GrupoCategoría" -msgid "Your PHP version is too old. You must have at least PHP 5.3.3." +msgid "Your PHP version is too old. You must have at least PHP 7.4.0." msgstr "" msgid "BAD semantic relation link" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2023-07-13 10:04:24 UTC (rev 11043) +++ trunk/locale/po/fr.po 2023-07-13 16:57:23 UTC (rev 11044) @@ -22,9 +22,9 @@ msgid "CategoryGroup" msgstr "CatégorieGroupes" -msgid "Your PHP version is too old. You must have at least PHP 5.3.3." +msgid "Your PHP version is too old. You must have at least PHP 7.4.0." msgstr "" -"Votre version de PHP est trop ancienne. Il faut avoir au moins PHP 5.3.3." +"Votre version de PHP est trop ancienne. Il faut avoir au moins PHP 7.4.0." msgid "BAD semantic relation link" msgstr "MAUVAIS lien de relation sémantique" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2023-07-13 10:04:24 UTC (rev 11043) +++ trunk/locale/po/it.po 2023-07-13 16:57:23 UTC (rev 11044) @@ -19,7 +19,7 @@ msgid "CategoryGroup" msgstr "CategoriaGruppo" -msgid "Your PHP version is too old. You must have at least PHP 5.3.3." +msgid "Your PHP version is too old. You must have at least PHP 7.4.0." msgstr "" msgid "BAD semantic relation link" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2023-07-13 10:04:24 UTC (rev 11043) +++ trunk/locale/po/ja.po 2023-07-13 16:57:23 UTC (rev 11044) @@ -18,7 +18,7 @@ msgid "CategoryGroup" msgstr "" -msgid "Your PHP version is too old. You must have at least PHP 5.3.3." +msgid "Your PHP version is too old. You must have at least PHP 7.4.0." msgstr "" msgid "BAD semantic relation link" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2023-07-13 10:04:24 UTC (rev 11043) +++ trunk/locale/po/nl.po 2023-07-13 16:57:23 UTC (rev 11044) @@ -22,7 +22,7 @@ msgid "CategoryGroup" msgstr "" -msgid "Your PHP version is too old. You must have at least PHP 5.3.3." +msgid "Your PHP version is too old. You must have at least PHP 7.4.0." msgstr "" msgid "BAD semantic relation link" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2023-07-13 10:04:24 UTC (rev 11043) +++ trunk/locale/po/sv.po 2023-07-13 16:57:23 UTC (rev 11044) @@ -19,7 +19,7 @@ msgid "CategoryGroup" msgstr "" -msgid "Your PHP version is too old. You must have at least PHP 5.3.3." +msgid "Your PHP version is too old. You must have at least PHP 7.4.0." msgstr "" msgid "BAD semantic relation link" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2023-07-13 10:04:24 UTC (rev 11043) +++ trunk/locale/po/zh.po 2023-07-13 16:57:23 UTC (rev 11044) @@ -18,7 +18,7 @@ msgid "CategoryGroup" msgstr "" -msgid "Your PHP version is too old. You must have at least PHP 5.3.3." +msgid "Your PHP version is too old. You must have at least PHP 7.4.0." msgstr "" msgid "BAD semantic relation link" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |