summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
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";
+ }
?>