increase character limit on board URI, title and subtitle
This commit is contained in:
@@ -122,7 +122,7 @@
|
||||
$body = html_entity_decode($body, ENT_COMPAT, 'UTF-8');
|
||||
|
||||
// calculate strlen() so we can add "..." after if needed
|
||||
$strlen = strlen($body);
|
||||
$strlen = mb_strlen($body);
|
||||
|
||||
$body = substr($body, 0, $len);
|
||||
|
||||
|
@@ -213,17 +213,17 @@
|
||||
'<table>' .
|
||||
'<tr>' .
|
||||
'<th><label for="board">URI</label></th>' .
|
||||
'<td><input type="text" name="uri" id="board" size="10" maxlength="15" />' .
|
||||
'<td><input type="text" name="uri" id="board" size="10" />' .
|
||||
' <span class="unimportant">(eg. "b"; "mu")</span></td>' .
|
||||
'</tr>' .
|
||||
'<tr>' .
|
||||
'<th><label for="title">Title</label></th>' .
|
||||
'<td><input type="text" name="title" id="title" size="25" maxlength="40" />' .
|
||||
'<td><input type="text" name="title" id="title" size="25" />' .
|
||||
' <span class="unimportant">(eg. "Random")</span></td>' .
|
||||
'</tr>' .
|
||||
'<tr>' .
|
||||
'<th><label for="subtitle">Subtitle</label></th>' .
|
||||
'<td><input type="text" name="subtitle" id="subtitle" size="25" maxlength="120" />' .
|
||||
'<td><input type="text" name="subtitle" id="subtitle" size="25" />' .
|
||||
' <span class="unimportant">(optional)</span></td>' .
|
||||
'</tr>' .
|
||||
'<tr>' .
|
||||
|
Reference in New Issue
Block a user