summaryrefslogtreecommitdiffstats
path: root/templates/part.folderlist.php
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-08-11 02:42:46 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2012-08-11 02:42:46 +0200
commit627865d433609eb7b12eb075a68a29d9fac31c3c (patch)
treed7aa9cc31d17c8736ab19e273a920ac81a2e1b4e /templates/part.folderlist.php
parentc37d6ea2225e6b7ee93d2a294c33d81681fa843e (diff)
changed the foldername Everything to Subscriptions, removed strtoupper for foldername dropdown menu to prevent confusion, made the button for folder selection wider and hid overflow
Diffstat (limited to 'templates/part.folderlist.php')
-rw-r--r--templates/part.folderlist.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/part.folderlist.php b/templates/part.folderlist.php
index a5f9626c6..b4b966e3c 100644
--- a/templates/part.folderlist.php
+++ b/templates/part.folderlist.php
@@ -1,6 +1,6 @@
<?php
function print_folder(OC_News_Folder $folder, $depth){
- echo '<li style="margin-left:' . 10*$depth . 'px;" class="menuItem" onclick="News.DropDownMenu.selectItem(this, ' . $folder->getId() . ')">' . strtoupper($folder->getName()) . '</li>';
+ echo '<li style="margin-left:' . 10*$depth . 'px;" class="menuItem" onclick="News.DropDownMenu.selectItem(this, ' . $folder->getId() . ')">' . $folder->getName() . '</li>';
$children = $folder->getChildren();
foreach($children as $child) {
if ($child instanceOf OC_News_Folder){