diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2012-02-01 07:42:34 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2012-02-01 07:42:34 +0000 |
commit | 1aa63970841fbf8e584f322304db1ffc581f38ee (patch) | |
tree | 04af829a0ec619da351b2d0ef8b91a795131fc47 /h-source/Application/Models/WikiModel.php | |
parent | 63eeb056575c3773b0e5932f8d2b83919267fbd2 (diff) |
added support for Greek
Diffstat (limited to 'h-source/Application/Models/WikiModel.php')
-rw-r--r-- | h-source/Application/Models/WikiModel.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/h-source/Application/Models/WikiModel.php b/h-source/Application/Models/WikiModel.php index 9cb4f6f..dd8d5a6 100644 --- a/h-source/Application/Models/WikiModel.php +++ b/h-source/Application/Models/WikiModel.php @@ -55,14 +55,14 @@ class WikiModel extends Model_Map { "checkNotEmpty" => 'title', "checkLength|99" => 'title|'.gtext('title is too long'), "+checkNotEmpty" => 'page', - "+checkLength|29900" => 'page|'.gtext('the page text is too long'), + "+checkLength|49900" => 'page|'.gtext('the page text is too long'), ); $this->strongConditions['update'] = array( "checkNotEmpty" => 'title', "checkLength|99" => 'title|'.gtext('title is too long'), "+checkNotEmpty" => 'page', - "+checkLength|29900" => 'page|'.gtext('the page text is too long'), + "+checkLength|49900" => 'page|'.gtext('the page text is too long'), ); $this->databaseConditions['insert'] = array( |