web/wp-content/themes/thematic/library/legacy/deprecated.php
changeset 1 0d28b7c10758
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/themes/thematic/library/legacy/deprecated.php	Fri Mar 12 13:29:04 2010 +0000
@@ -0,0 +1,24 @@
+<?php
+
+/**
+ * Function for handling the bloginfo / get_bloginfo data using our own 'cache'.
+ * move the content div inside of template files By taking the content div out of 
+ *
+ * We removed the functionality because it will not run on all systems. The system used
+ * a fallback, but we could not guarantee that the fallback would meet every possible
+ * error condition.
+ *
+ * @since 0.9.6
+ * @deprecated 0.6.1
+ */
+
+function thm_bloginfo($command = '', $echo = FALSE) {
+
+    if ($echo) {
+	   bloginfo($command);
+    } else {
+        return get_bloginfo($command);
+    }
+} 
+
+?>
\ No newline at end of file