summaryrefslogtreecommitdiffstats
path: root/templates/sidebar_preferences.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/sidebar_preferences.inc.php')
-rw-r--r--templates/sidebar_preferences.inc.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/sidebar_preferences.inc.php b/templates/sidebar_preferences.inc.php
index 16abe728..0dc6cc3a 100644
--- a/templates/sidebar_preferences.inc.php
+++ b/templates/sidebar_preferences.inc.php
@@ -1,4 +1,4 @@
-<?php
+<?php
/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
/*
@@ -24,15 +24,15 @@
* they can have their own preference sections so we need to build the
* links based on that, always ignore 'internal' though
*/
-$catagories = Preference::get_catagories();
+$catagories = Preference::get_catagories();
?>
<ul class="sb2" id="sb_preferences">
<li><h4><?php echo _('Preferences'); ?></h4>
<ul class="sb3" id="sb_preferences_sections">
-<?php
- foreach ($catagories as $name) {
- if ($name == 'system') { continue; }
- $f_name = ucfirst($name);
+<?php
+ foreach ($catagories as $name) {
+ if ($name == 'system') { continue; }
+ $f_name = ucfirst($name);
?>
<li id="sb_preferences_sections_<?php echo $f_name; ?>"><a href="<?php echo $web_path; ?>/preferences.php?tab=<?php echo $name; ?>"><?php echo _($f_name); ?></a></li>
<?php } ?>