From 3d791b14fc96372ee0bdd246e75a3a3b3a6a6248 Mon Sep 17 00:00:00 2001 From: Rob Church Date: Mon, 26 Jun 2006 13:12:03 +0000 Subject: [PATCH] Need double quotes here, not single, else "APC found" produces literal "\n" on the page --- config/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/index.php b/config/index.php index ebb210ac4d..9042d80286 100644 --- a/config/index.php +++ b/config/index.php @@ -333,7 +333,7 @@ if ( $conf->turck ) { $conf->apc = function_exists('apc_fetch'); if ($conf->apc ) { - print '
  • APC installed
  • \n'; + print "
  • APC installed
  • "; } $conf->eaccel = function_exists( 'eaccelerator_get' ); -- 2.20.1