diff options
| author | Antonio Gallo <tonicucoz@gmail.com> | 2011-02-17 17:49:40 +0000 | 
|---|---|---|
| committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-02-17 17:49:40 +0000 | 
| commit | 378301c02a58382cdcf796e512360ace3e52baf2 (patch) | |
| tree | 48b376d1340741ea574f35bb4ffe39e994bcdb1c /h-source/Application/Controllers/HistoryController.php | |
| parent | c91a070738a9e46008209c4afe596ff56cfaa777 (diff) | |
improved wiki
Diffstat (limited to 'h-source/Application/Controllers/HistoryController.php')
| -rw-r--r-- | h-source/Application/Controllers/HistoryController.php | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/h-source/Application/Controllers/HistoryController.php b/h-source/Application/Controllers/HistoryController.php index 13d3b3a..ac1ab1a 100644 --- a/h-source/Application/Controllers/HistoryController.php +++ b/h-source/Application/Controllers/HistoryController.php @@ -201,7 +201,7 @@ class HistoryController extends BaseController  			'clean_type'	=>	'page_del',  			'model_name'	=>	'WikiModel',  			'id_name'		=>	'id_wiki', -			'field_name'	=>	'deleted', +			'field_name'	=>	'-deleted',  			'actions'		=>	array('pagehide','pageshow'),  			'group'			=>	'admin', @@ -312,6 +312,9 @@ class HistoryController extends BaseController  						{  							if (eg_strlen($message) < 500)  							{ +								//drop the - char if present +								$clean['field_name'] = str_replace('-',null,$clean['field_name']); +								  								//hide the message  								$model->values = array($clean['field_name'] => $this->strings[$action]['to_status']);  								$model->pUpdate($clean['id']);  | 
