summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-10 20:35:09 +0100
committerAndrew Dolgov <[email protected]>2005-12-10 20:35:09 +0100
commit0ea4fb50963cd443e06ef77fb0d193335575e51b (patch)
treeeb42f93ff3137cbf9ee8c4eb2da4ae50dea42d7d /functions.php
parent4663f9c6503db2cc9817e52676163b1cb025a8b6 (diff)
prefs: rework categorized feed list, boxed feed editor instead of inline
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/functions.php b/functions.php
index d977745f9..eedb9ab7b 100644
--- a/functions.php
+++ b/functions.php
@@ -836,4 +836,11 @@
return "false";
}
}
+
+ function toggleEvenOdd($a) {
+ if ($a == "even")
+ return "odd";
+ else
+ return "even";
+ }
?>