Difference between revisions of "Talk:Downloads/Landing page"

From Sugar Labs
Jump to navigation Jump to search
(Created page with "Did something happen to make Imagemaps stop working??? --~~~~")
 
Line 1: Line 1:
 
Did something happen to make Imagemaps stop working??? --[[User:Walter|Walter]] 10:35, 21 April 2011 (EDT)
 
Did something happen to make Imagemaps stop working??? --[[User:Walter|Walter]] 10:35, 21 April 2011 (EDT)
 +
<nowiki>--- LocalSettings1.php    2011-04-21 11:46:50.000000000 -0400
 +
                          (back-edited to create diff)
 +
+++ LocalSettings.php    2011-04-21 11:42:49.000000000 -0400
 +
@@ -241,14 +241,16 @@
 +
require_once( "$IP/extensions/TitleBlacklist/TitleBlacklist.php" );
 +
 +
# bernie: helps fight vandals
 +
-include_once('$IP/extensions/CheckUser/CheckUser.php');
 +
+# 21 April 2011 fgrose: updated to remove '$IP/' prefix
 +
+include_once('extensions/CheckUser/CheckUser.php');
 +
 +
# bernie: also help fight vandals
 +
include_once('includes/DatabaseFunctions.php');
 +
include_once("$IP/extensions/bad-behavior/bad-behavior-mediawiki.php");
 +
 +
# bernie: requested by FGrose: http://bugs.sugarlabs.org/ticket/580
 +
-include_once('$IP/extensions/ImageMap/ImageMap.php');
 +
+# 21 April 2011 fgrose: updated to remove '$IP/' prefix
 +
+include_once('extensions/ImageMap/ImageMap.php');
 +
 +
# 23-July-2010 fgrose
 +
$wgVectorUseIconWatch = true;
 +
 +
This was needed to fix the loss of ImageMap functionality in the last
 +
day or two.
 +
 +
          --Fred</nowiki>

Revision as of 11:55, 21 April 2011

Did something happen to make Imagemaps stop working??? --Walter 10:35, 21 April 2011 (EDT)

--- LocalSettings1.php    2011-04-21 11:46:50.000000000 -0400
                          (back-edited to create diff)
+++ LocalSettings.php    2011-04-21 11:42:49.000000000 -0400
@@ -241,14 +241,16 @@
 require_once( "$IP/extensions/TitleBlacklist/TitleBlacklist.php" );

 # bernie: helps fight vandals
-include_once('$IP/extensions/CheckUser/CheckUser.php');
+# 21 April 2011 fgrose: updated to remove '$IP/' prefix
+include_once('extensions/CheckUser/CheckUser.php');

 # bernie: also help fight vandals
 include_once('includes/DatabaseFunctions.php');
 include_once("$IP/extensions/bad-behavior/bad-behavior-mediawiki.php");

 # bernie: requested by FGrose: http://bugs.sugarlabs.org/ticket/580
-include_once('$IP/extensions/ImageMap/ImageMap.php');
+# 21 April 2011 fgrose: updated to remove '$IP/' prefix
+include_once('extensions/ImageMap/ImageMap.php');

 # 23-July-2010 fgrose
 $wgVectorUseIconWatch = true;

This was needed to fix the loss of ImageMap functionality in the last
day or two.

          --Fred