From: <var...@us...> - 2014-07-28 13:52:04
|
Revision: 9017 http://sourceforge.net/p/phpwiki/code/9017 Author: vargenau Date: 2014-07-28 13:51:56 +0000 (Mon, 28 Jul 2014) Log Message: ----------- Always add DebugInfo and SpellCheck Modified Paths: -------------- trunk/lib/IniConfig.php Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2014-07-28 13:11:28 UTC (rev 9016) +++ trunk/lib/IniConfig.php 2014-07-28 13:51:56 UTC (rev 9017) @@ -612,11 +612,9 @@ // The FUSIONFORGE theme omits them if (!(defined('FUSIONFORGE') and FUSIONFORGE)) { - // Add some some action pages depending on configuration - if (DEBUG) { - $ActionPages[] = 'DebugInfo'; - $ActionPages[] = 'SpellCheck'; // SpellCheck does not work - } + // Add some some action pages + $ActionPages[] = 'DebugInfo'; + $ActionPages[] = 'SpellCheck'; // SpellCheck does not work $ActionPages[] = 'BlogArchives'; $ActionPages[] = 'BlogJournal'; $ActionPages[] = 'EditMetaData'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |