Need double quotes here, not single, else "APC found" produces literal "\n" on the...
authorRob Church <robchurch@users.mediawiki.org>
Mon, 26 Jun 2006 13:12:03 +0000 (13:12 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Mon, 26 Jun 2006 13:12:03 +0000 (13:12 +0000)
config/index.php

index ebb210a..9042d80 100644 (file)
@@ -333,7 +333,7 @@ if ( $conf->turck ) {
 
 $conf->apc = function_exists('apc_fetch');
 if ($conf->apc ) {
-       print '<li><a href="http://www.php.net/apc">APC</a> installed</li>\n';
+       print "<li><a href=\"http://www.php.net/apc\">APC</a> installed</li>";
 }
 
 $conf->eaccel = function_exists( 'eaccelerator_get' );