From: skodak Date: Sat, 22 Apr 2006 16:02:49 +0000 (+0000) Subject: fixed undefined $error in error message X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=fea68f909edc17fa7e3801f26ef751973d17ee82;p=moodle.git fixed undefined $error in error message --- diff --git a/blog/edit.php b/blog/edit.php index 211c539d89..fc56e38c4d 100755 --- a/blog/edit.php +++ b/blog/edit.php @@ -329,7 +329,7 @@ function do_update($post) { }*/ } else { // get_string('', 'blog') //Daryl Hawes note: localize this line - $post->error = 'There was an error updating this post in the database: '. $error; + $post->error = 'There was an error updating this post in the database'; } } ?>