diff options
Diffstat (limited to 'app/view/templates/homemenu.php')
-rw-r--r-- | app/view/templates/homemenu.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/app/view/templates/homemenu.php b/app/view/templates/homemenu.php index 51a58e9..e437a4e 100644 --- a/app/view/templates/homemenu.php +++ b/app/view/templates/homemenu.php @@ -76,7 +76,7 @@ </select> <label for="setlevel">Privacy level</label> </br> - <strong>Favicon</strong> + <strong>Images</strong> </br> <select name="datas[favicon]" id="favicon"> <option value="" disabled selected>--set favicon--</option> @@ -88,6 +88,16 @@ </select> <label for="favicon">Favicon</label> </br> + <select name="datas[thumbnail]" id="thumbnail"> + <option value="" disabled selected>--set thumbnail--</option> + <?php + foreach ($thumbnaillist as $thumbnail) { + echo '<option value ="' . $thumbnail . '">' . $thumbnail . '</option>'; + } + ?> + </select> + <label for="favicon">Thumnail</label> + </br> <strong>Templates</strong> </br> <select name="datas[templatebody]" id="templatebody"> |