From: <ru...@us...> - 2010-06-08 12:08:11
|
Revision: 7499 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7499&view=rev Author: rurban Date: 2010-06-08 12:08:05 +0000 (Tue, 08 Jun 2010) Log Message: ----------- invert wrong logic. sortable is included in -min Modified Paths: -------------- trunk/lib/WikiTheme.php Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2010-06-08 12:04:40 UTC (rev 7498) +++ trunk/lib/WikiTheme.php 2010-06-08 12:08:05 UTC (rev 7499) @@ -223,7 +223,7 @@ return; } $this->addMoreHeaders(JavaScript('',array('src' => $this->_findData("wikicommon.js")))); - if (!DEBUG and !GFORGE) { + if (DEBUG and !GFORGE) { // Gforge and non-debug already load this $this->addMoreHeaders(JavaScript('',array('src' => $this->_findData("sortable.js")))); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |