mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-25 20:41:20 -05:00
Changed the max length of the title from 32 to 50 chars.
This commit is contained in:
parent
70c71ef162
commit
8799cf8d63
@ -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',
|
||||||
|
@ -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">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user