diff options
| author | Bruno Ais <brunoaiss@gmail.com> | 2012-02-14 07:58:30 +0000 | 
|---|---|---|
| committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-03-19 08:27:32 -0400 | 
| commit | 6f5c0dddfcd2a1b56fe1e8cf783f48ecfc8561e9 (patch) | |
| tree | 02ff2714d5ad92717022251245f2d57d5435053e | |
| parent | c241a4a2b484b561b5515c6f8211a21d39fd8d78 (diff) | |
| download | forums-6f5c0dddfcd2a1b56fe1e8cf783f48ecfc8561e9.tar forums-6f5c0dddfcd2a1b56fe1e8cf783f48ecfc8561e9.tar.gz forums-6f5c0dddfcd2a1b56fe1e8cf783f48ecfc8561e9.tar.bz2 forums-6f5c0dddfcd2a1b56fe1e8cf783f48ecfc8561e9.tar.xz forums-6f5c0dddfcd2a1b56fe1e8cf783f48ecfc8561e9.zip  | |
[feature/save-post-on-report] Bug fix table name
There was a bug in the previous commit. I changed the name
of the colon of the table and forgot to update the database_update.php
now it's fixed.
PHPBB3-10600
| -rw-r--r-- | phpBB/install/database_update.php | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 0a2c3998c4..7240e899a6 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1089,7 +1089,7 @@ function database_update_info()  					'field_show_on_pm'		=> array('BOOL', 0),  				),  				REPORTS_TABLE		=> array( -					'reported_post'			=> array('TEXT', ''), +					'reported_text'			=> array('TEXT', ''),  				),  			),  			'change_columns'	=> array(  | 
