From: <var...@us...> - 2014-07-29 08:40:42
|
Revision: 9023 http://sourceforge.net/p/phpwiki/code/9023 Author: vargenau Date: 2014-07-29 08:40:35 +0000 (Tue, 29 Jul 2014) Log Message: ----------- No need to translate this Modified Paths: -------------- trunk/lib/upgrade.php Modified: trunk/lib/upgrade.php =================================================================== --- trunk/lib/upgrade.php 2014-07-29 08:40:10 UTC (rev 9022) +++ trunk/lib/upgrade.php 2014-07-29 08:40:35 UTC (rev 9023) @@ -117,17 +117,17 @@ { echo "<h2>", sprintf(_("Check for necessary %s updates"), _("ActionPage")), "</h2>\n"; // 1.3.13 before we pull in all missing pages, we rename existing ones - $this->_rename_page_helper(_("_AuthInfo"), _("DebugAuthInfo")); - $this->_rename_page_helper(_("Help/_AuthInfoPlugin"), _("Help/DebugAuthInfoPlugin")); - $this->_rename_page_helper(_("_GroupInfo"), _("DebugGroupInfo")); - $this->_rename_page_helper(_("Help/_GroupInfoPlugin"), _("Help/DebugGroupInfoPlugin")); - $this->_rename_page_helper(_("_BackendInfo"), _("DebugBackendInfo")); - $this->_rename_page_helper(_("Help/_BackendInfoPlugin"), _("Help/DebugBackendInfoPlugin")); - $this->_rename_page_helper(_("Help/_WikiTranslationPlugin"), _("Help/WikiTranslationPlugin")); - $this->_rename_page_helper(_("Help/Advice Mediawiki users"), _("Help/Advice for Mediawiki users")); + $this->_rename_page_helper("_AuthInfo", "DebugAuthInfo"); + $this->_rename_page_helper("Help/_AuthInfoPlugin", "Help/DebugAuthInfoPlugin"); + $this->_rename_page_helper("_GroupInfo", "DebugGroupInfo"); + $this->_rename_page_helper("Help/_GroupInfoPlugin", "Help/DebugGroupInfoPlugin"); + $this->_rename_page_helper("_BackendInfo", "DebugBackendInfo"); + $this->_rename_page_helper("Help/_BackendInfoPlugin", "Help/DebugBackendInfoPlugin"); + $this->_rename_page_helper("Help/_WikiTranslationPlugin", "Help/WikiTranslationPlugin"); + $this->_rename_page_helper("Help/Advice Mediawiki users", "Help/Advice for Mediawiki users"); // this is in some templates. so we keep the old name //$this->_rename_page_helper($this->dbi, _("DebugInfo"), _("DebugBackendInfo")); - $this->_rename_page_helper(_("_GroupInfo"), _("GroupAuthInfo")); //never officially existed + $this->_rename_page_helper("_GroupInfo", "GroupAuthInfo"); //never officially existed $this->_rename_page_helper("InterWikiKarte", "InterWikiListe"); // german only $path = FindFile('pgsrc'); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |