|
From: <var...@us...> - 2017-01-11 12:26:21
|
Revision: 9997
http://sourceforge.net/p/phpwiki/code/9997
Author: vargenau
Date: 2017-01-11 12:26:18 +0000 (Wed, 11 Jan 2017)
Log Message:
-----------
Remove unused global $FieldSeparator
Modified Paths:
--------------
trunk/lib/IniConfig.php
Modified: trunk/lib/IniConfig.php
===================================================================
--- trunk/lib/IniConfig.php 2017-01-11 12:14:43 UTC (rev 9996)
+++ trunk/lib/IniConfig.php 2017-01-11 12:26:18 UTC (rev 9997)
@@ -50,7 +50,7 @@
* (namespace pollution). (FusionForge, phpnuke, postnuke, phpBB2, carolina, ...)
* Use one global $phpwiki object instead which holds the cfg vars, constants
* and all other globals.
- * (global $FieldSeparator, $WikiNameRegexp, $KeywordLinkRegexp;
+ * (global $WikiNameRegexp, $KeywordLinkRegexp;
* global $DisabledActions, $DBParams, $LANG, $AllActionPages)
*
* - Resurrect the larger "config object" code (in config/) so it'll aid the
@@ -556,14 +556,11 @@
// moved from lib/config.php [1ms]
function fixup_static_configs($file)
{
- global $FieldSeparator, $AllActionPages;
+ global $AllActionPages;
global $DBParams;
// init FileFinder to add proper include paths
findFile("lib/interwiki.map", true);
- // $FieldSeparator = "\xFF"; // this byte should never appear in utf-8
- $FieldSeparator = "\xFF";
-
// All pages containing plugins of the same name as the filename
$ActionPages = explode(':',
'AllPages:AllUsers:AppendText:AuthorHistory:'
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|