Make the tab's first character uppercase

This commit is contained in:
Kyle Johnson 2013-06-21 22:22:54 -04:00
parent 567c0c5c20
commit 5635b24897
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
<?php <?php
foreach ($categories as $key => $value) { foreach ($categories as $key => $value) {
$category = $value['Config']['Category']; $category = $value['Config']['Category'];
echo '<li><a href="#tabs-'.$category.'">' . $category . '</a></li>'; echo '<li><a href="#tabs-'.$category.'">' . ucfirst($category) . '</a></li>';
} }
?> ?>
</ul> </ul>