From: Aaron Schulz Date: Sat, 13 Sep 2008 16:00:38 +0000 (+0000) Subject: $msg not defined...use $text? X-Git-Tag: 1.31.0-rc.0~45327 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/modifier.php?a=commitdiff_plain;h=674f6f9bd50868d57b639d0c9627914a654997ce;p=lhc%2Fweb%2Fwiklou.git $msg not defined...use $text? --- 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() ); } }