diff options
Diffstat (limited to '')
-rw-r--r-- | admin/template/goto/cat_modify.tpl | 4 | ||||
-rw-r--r-- | admin/template/goto/element_set_unit.tpl | 2 | ||||
-rw-r--r-- | admin/template/goto/picture_modify.tpl | 2 | ||||
-rw-r--r-- | template/yoga/picture.tpl | 4 | ||||
-rw-r--r-- | template/yoga/upload.tpl | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/admin/template/goto/cat_modify.tpl b/admin/template/goto/cat_modify.tpl index 27b6be457..820e21397 100644 --- a/admin/template/goto/cat_modify.tpl +++ b/admin/template/goto/cat_modify.tpl @@ -45,7 +45,7 @@ <tr> <td><strong>{'Description'|@translate}</strong></td> <td> - <textarea cols="50" rows="5" name="comment" class="description">{$CAT_COMMENT}</textarea> + <textarea cols="50" rows="5" name="comment" id="comment" class="description">{$CAT_COMMENT}</textarea> </td> </tr> </table> @@ -213,7 +213,7 @@ <tr> <td><strong>{'mail_content'|@translate}</strong></td> <td> - <textarea cols="50" rows="5" name="mail_content" class="description">{$MAIL_CONTENT}</textarea> + <textarea cols="50" rows="5" name="mail_content" id="mail_content" class="description">{$MAIL_CONTENT}</textarea> </td> </tr> diff --git a/admin/template/goto/element_set_unit.tpl b/admin/template/goto/element_set_unit.tpl index e4805cf44..c2b38a00d 100644 --- a/admin/template/goto/element_set_unit.tpl +++ b/admin/template/goto/element_set_unit.tpl @@ -83,7 +83,7 @@ <tr> <td><strong>{'Description'|@translate}</strong></td> - <td><textarea name="description-{$element.ID}" class="description">{$element.DESCRIPTION}</textarea></td> + <td><textarea name="description-{$element.ID}" id="description-{$element.ID}" class="description">{$element.DESCRIPTION}</textarea></td> </tr> </table> diff --git a/admin/template/goto/picture_modify.tpl b/admin/template/goto/picture_modify.tpl index 2e4d161e7..ddf4e3fc4 100644 --- a/admin/template/goto/picture_modify.tpl +++ b/admin/template/goto/picture_modify.tpl @@ -123,7 +123,7 @@ <tr> <td><strong>{'Description'|@translate}</strong></td> - <td><textarea name="description" class="description">{$DESCRIPTION}</textarea></td> + <td><textarea name="description" id="description" class="description">{$DESCRIPTION}</textarea></td> </tr> <tr> diff --git a/template/yoga/picture.tpl b/template/yoga/picture.tpl index 756434c4a..5d6f85b7f 100644 --- a/template/yoga/picture.tpl +++ b/template/yoga/picture.tpl @@ -22,7 +22,7 @@ <div id="imageHeaderBar"> <div class="browsePath"> <a href="{$U_HOME}" rel="home">{'home'|@translate}</a> - {$LEVEL_SEPARATOR}{$SECTION_TITLE} + {if $SECTION_TITLE != 'no_category'|@translate}{$LEVEL_SEPARATOR}{$SECTION_TITLE}{/if} {$LEVEL_SEPARATOR}{$current.TITLE} </div> <div class="imageNumber">{$PHOTO}</div> @@ -262,7 +262,7 @@ y.callService( {if $comment_add.SHOW_AUTHOR} <label>{'upload_author'|@translate}<input type="text" name="author"></label> {/if} - <label>{'comment'|@translate}<textarea name="content" rows="5" cols="80">{$comment_add.CONTENT}</textarea></label> + <label>{'comment'|@translate}<textarea name="content" id="content" rows="5" cols="80">{$comment_add.CONTENT}</textarea></label> <input type="hidden" name="key" value="{$comment_add.KEY}" /> <input class="submit" type="submit" value="{'Submit'|@translate}"> </fieldset> diff --git a/template/yoga/upload.tpl b/template/yoga/upload.tpl index b92c918fd..a685a9a86 100644 --- a/template/yoga/upload.tpl +++ b/template/yoga/upload.tpl @@ -86,7 +86,7 @@ <tr> <td>{'comment'|@translate}</td> <td> - <textarea name="comment" rows="3" cols="40" style="overflow:auto">{$COMMENT_IMG}</textarea> + <textarea name="comment" id="comment" rows="3" cols="40" style="overflow:auto">{$COMMENT_IMG}</textarea> </td> </tr> {/if} |