diff options
author | Nils Adermann <naderman@naderman.de> | 2007-08-16 12:19:26 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2007-08-16 12:19:26 +0000 |
commit | 487ca9229997f0bd1c5ed228cf7dc3a033fce329 (patch) | |
tree | 91c74e3ffb1e41695812718e34bbe896d56ac563 /phpBB/includes/message_parser.php | |
parent | c9dcf849b9d196f27131c21b79ebf1793f3c1cda (diff) | |
download | forums-487ca9229997f0bd1c5ed228cf7dc3a033fce329.tar forums-487ca9229997f0bd1c5ed228cf7dc3a033fce329.tar.gz forums-487ca9229997f0bd1c5ed228cf7dc3a033fce329.tar.bz2 forums-487ca9229997f0bd1c5ed228cf7dc3a033fce329.tar.xz forums-487ca9229997f0bd1c5ed228cf7dc3a033fce329.zip |
- added information about Unicode to coding guidelines
- two little changes
git-svn-id: file:///svn/phpbb/trunk@8035 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/message_parser.php')
-rw-r--r-- | phpBB/includes/message_parser.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/message_parser.php b/phpBB/includes/message_parser.php index fda31a20e3..c2d40670af 100644 --- a/phpBB/includes/message_parser.php +++ b/phpBB/includes/message_parser.php @@ -1371,7 +1371,7 @@ class parse_message extends bbcode_firstpass include_once($phpbb_root_path . 'includes/functions_admin.' . $phpEx); $index = array_keys(request_var('delete_file', array(0 => 0))); - $index = (!empty($index[0])) ? $index[0] : false; + $index = (!empty($index)) ? $index[0] : false; if ($index !== false && !empty($this->attachment_data[$index])) { |