From 674f6f9bd50868d57b639d0c9627914a654997ce Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 13 Sep 2008 16:00:38 +0000 Subject: [PATCH] $msg not defined...use $text? --- includes/db/Database.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/db/Database.php b/includes/db/Database.php index 3c37f707a7..ff7be62a41 100644 --- a/includes/db/Database.php +++ b/includes/db/Database.php @@ -2521,13 +2521,13 @@ border=\"0\" ALT=\"Google\"> $cache = new HTMLFileCache( $t ); if( $cache->isFileCached() ) { // @todo, FIXME: $msg is not defined on the next line. - $msg = '

'.$msg."
\n" . + $msg = '

'.$text."
\n" . $cachederror . "

\n"; $tag = '
'; $text = str_replace( $tag, - $tag . $msg, + $tag . $text, $cache->fetchPageText() ); } } -- 2.20.1