diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-05 04:43:13 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-05 04:43:13 +0000 |
commit | ca34aa1edeb011baed4e2a6fabe56d90c0ba314d (patch) | |
tree | 19ef4bdd32a97f1effc6e50d2e06dba74fb398ba /lib/class/update.class.php | |
parent | afe3b2fcb0183426c34620dfe2d68ed41f84d1d9 (diff) | |
download | ampache-ca34aa1edeb011baed4e2a6fabe56d90c0ba314d.tar.gz ampache-ca34aa1edeb011baed4e2a6fabe56d90c0ba314d.tar.bz2 ampache-ca34aa1edeb011baed4e2a6fabe56d90c0ba314d.zip |
* Prevent Album art set on demo because people put porn in there :(
* Fix Push functionality for the Democratic view stuff
* Add footer div definition per Apex's request
* Fix Config display with multi-value elements
* Added plugin checking to update.php wq
Diffstat (limited to 'lib/class/update.class.php')
-rw-r--r-- | lib/class/update.class.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/class/update.class.php b/lib/class/update.class.php index 41d56f3d..9375883b 100644 --- a/lib/class/update.class.php +++ b/lib/class/update.class.php @@ -2093,6 +2093,10 @@ class Update { while ($r = mysql_fetch_assoc($db_results)) { $user->fix_preferences($r['username']); } // while results + + /* Drop the unused user_catalog table */ + $sql = "DROP TABLE `user_catalog`"; + $db_results = mysql_query($sql,dbh()); $this->set_version('db_version','333002'); |