diff options
author | the_systech <the_systech@users.sourceforge.net> | 2001-12-31 16:48:37 +0000 |
---|---|---|
committer | the_systech <the_systech@users.sourceforge.net> | 2001-12-31 16:48:37 +0000 |
commit | cc29b25fefe690e4cc7fd718826c2cfd9d24706d (patch) | |
tree | 7f9d96e47ccb5263c5a5750ece0385d0f7f7a365 | |
parent | 0b304ef6bcc4fcee4ca8035d18922aa8db8a4ed8 (diff) | |
download | forums-cc29b25fefe690e4cc7fd718826c2cfd9d24706d.tar forums-cc29b25fefe690e4cc7fd718826c2cfd9d24706d.tar.gz forums-cc29b25fefe690e4cc7fd718826c2cfd9d24706d.tar.bz2 forums-cc29b25fefe690e4cc7fd718826c2cfd9d24706d.tar.xz forums-cc29b25fefe690e4cc7fd718826c2cfd9d24706d.zip |
Fixed type Bug # 498051
git-svn-id: file:///svn/phpbb/trunk@1751 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/admin/admin_styles.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/admin/admin_styles.php b/phpBB/admin/admin_styles.php index 19dba23335..46ed49ac5f 100644 --- a/phpBB/admin/admin_styles.php +++ b/phpBB/admin/admin_styles.php @@ -146,7 +146,7 @@ switch( $mode ) WHERE style_name = '" . str_replace("\'", "''", $style_name) . "'"; if(!$result = $db->sql_query($sql)) { - message_die(GENREAL_ERROR, "Could not query themes table!", "", __LINE__, __FILE__, $sql); + message_die(GENERAL_ERROR, "Could not query themes table!", "", __LINE__, __FILE__, $sql); } if(!$db->sql_numrows($result)) @@ -931,4 +931,4 @@ if( !$HTTP_POST_VARS['send_file'] ) include('page_footer_admin.'.$phpEx); } -?>
\ No newline at end of file +?> |