diff options
author | Thomas Lange <code@nerdmind.de> | 2017-02-27 07:13:18 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-02-27 07:13:18 +0100 |
commit | dbf60c83eb0715d6105743155a2c2582d7ce0e58 (patch) | |
tree | 98e52832ed4a87d54cadbb6c8c488e78e6ace10b | |
parent | 141f1695a5a8ab1b3bf3cec86749ba2d3fb0e613 (diff) | |
download | blog-dbf60c83eb0715d6105743155a2c2582d7ce0e58.tar.gz blog-dbf60c83eb0715d6105743155a2c2582d7ce0e58.tar.xz blog-dbf60c83eb0715d6105743155a2c2582d7ce0e58.zip |
Forgotten CSS class for page and user form template added.
-rw-r--r-- | template/admin/html/page/form.php | 2 | ||||
-rw-r--r-- | template/admin/html/user/form.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/template/admin/html/page/form.php b/template/admin/html/page/form.php index cf87f82..99b3e00 100644 --- a/template/admin/html/page/form.php +++ b/template/admin/html/page/form.php @@ -53,7 +53,7 @@ <section class="flex flex-padding"> <textarea id="content-editor" name="body" placeholder="[…]"><?=escapeHTML($FORM['DATA']['BODY'])?></textarea> </section> - <section class="flex flex-padding background"> + <section class="flex flex-padding background flex-emoticons"> <ul class="button-list emoticons"> <?php foreach(getEmoticons() as $emoticon => $data):?> <li onmousedown="emoticonReplace('<?=$emoticon?>')" title="<?=$data[1]?>"><?=$data[0]?></li> diff --git a/template/admin/html/user/form.php b/template/admin/html/user/form.php index c284187..333b46d 100644 --- a/template/admin/html/user/form.php +++ b/template/admin/html/user/form.php @@ -59,7 +59,7 @@ <section class="flex flex-padding"> <textarea id="content-editor" name="body" placeholder="[…]"><?=escapeHTML($FORM['DATA']['BODY'])?></textarea> </section> - <section class="flex flex-padding background"> + <section class="flex flex-padding background flex-emoticons"> <ul class="button-list emoticons"> <?php foreach(getEmoticons() as $emoticon => $data):?> <li onmousedown="emoticonReplace('<?=$emoticon?>')" title="<?=$data[1]?>"><?=$data[0]?></li> |