diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-07-08 07:59:21 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-07-08 07:59:21 +0000 |
commit | 3a289531c38e4a7c1b0199b5ade8dae433e77166 (patch) | |
tree | 5e79949f91a904be5b7dcb40ed631bab199886dd /lib/general.lib.php | |
parent | bb0e979ad50c4b97178b10db00fb346d275de4fc (diff) | |
download | ampache-3a289531c38e4a7c1b0199b5ade8dae433e77166.tar.gz ampache-3a289531c38e4a7c1b0199b5ade8dae433e77166.tar.bz2 ampache-3a289531c38e4a7c1b0199b5ade8dae433e77166.zip |
fixed some typos that prevented genre stats from being tracked at all
Diffstat (limited to 'lib/general.lib.php')
-rw-r--r-- | lib/general.lib.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/general.lib.php b/lib/general.lib.php index e04f4f26..38afb2e8 100644 --- a/lib/general.lib.php +++ b/lib/general.lib.php @@ -698,6 +698,18 @@ ECHO; } // show_info_box +/** + * tbl_name + * This function takes a SQL table name and returns it with any prefix + * that might be needed to make it work, + * @package General + * @catagory Database + */ +function tbl_name($table) { + + /* For now we just return the table name */ + return $table; +} // table ?> |