Changed the max length of the title from 32 to 50 chars.

This commit is contained in:
Claude 2013-01-23 15:12:58 +01:00
parent 70c71ef162
commit 8799cf8d63
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ class Main extends CI_Controller
) , ) ,
'title' => array( 'title' => array(
'type' => 'VARCHAR', 'type' => 'VARCHAR',
'constraint' => 32, 'constraint' => 50,
) , ) ,
'name' => array( 'name' => array(
'type' => 'VARCHAR', 'type' => 'VARCHAR',

View File

@ -30,7 +30,7 @@
<span class="instruction">Give your paste a title.</span> <span class="instruction">Give your paste a title.</span>
</label> </label>
<input value="<?php if(isset($title_set)){ echo $title_set; }?>" type="text" id="title" name="title" tabindex="2" maxlength="32" /> <input value="<?php if(isset($title_set)){ echo $title_set; }?>" type="text" id="title" name="title" tabindex="2" maxlength="50" />
</div> </div>
<div class="item last"> <div class="item last">