diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-03 22:39:37 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-03 22:39:37 +0000 |
commit | 9f27528b65dc47392dff8b9ed90905f3d42cae7c (patch) | |
tree | cfa1c8b8efea202cfc86ddd238c393c1cee0119b /phpBB/admin | |
parent | 1fcd1afe9dc10da02d129abea2ce1bf030677146 (diff) | |
download | forums-9f27528b65dc47392dff8b9ed90905f3d42cae7c.tar forums-9f27528b65dc47392dff8b9ed90905f3d42cae7c.tar.gz forums-9f27528b65dc47392dff8b9ed90905f3d42cae7c.tar.bz2 forums-9f27528b65dc47392dff8b9ed90905f3d42cae7c.tar.xz forums-9f27528b65dc47392dff8b9ed90905f3d42cae7c.zip |
Hopefully killed bug #472269 dead, a touch of Domestos power
git-svn-id: file:///svn/phpbb/trunk@1272 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin')
-rw-r--r-- | phpBB/admin/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/admin/index.php b/phpBB/admin/index.php index 4f89d2ae06..23a07e55c4 100644 --- a/phpBB/admin/index.php +++ b/phpBB/admin/index.php @@ -201,7 +201,7 @@ elseif( $HTTP_GET_VARS['pane'] == 'right' ) if($result = $db->sql_query($sql)) { $row = $db->sql_fetchrow($result); - echo $version = $row['mysql_version']; + $version = $row['mysql_version']; if( preg_match("/^(3\.23|4\.)/", $version) ) { |