summaryrefslogtreecommitdiffstats
path: root/lib/class/update.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-02-09 07:02:23 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-02-09 07:02:23 +0000
commit6fdd9ac8d2ebe14bf743c543825914ab3f04d656 (patch)
treefcaf8c386b8e85e2fdb97b149f85f2870a1f1e86 /lib/class/update.class.php
parentf4bd8ffecab6a060252c93379b3c6b1763ab6392 (diff)
downloadampache-6fdd9ac8d2ebe14bf743c543825914ab3f04d656.tar.gz
ampache-6fdd9ac8d2ebe14bf743c543825914ab3f04d656.tar.bz2
ampache-6fdd9ac8d2ebe14bf743c543825914ab3f04d656.zip
fix to user auth with xml-api (Thx purdyk) and fix update all not resetting album art cache
Diffstat (limited to 'lib/class/update.class.php')
-rw-r--r--lib/class/update.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/update.class.php b/lib/class/update.class.php
index 9bd67c81..58da8330 100644
--- a/lib/class/update.class.php
+++ b/lib/class/update.class.php
@@ -1135,7 +1135,7 @@ class Update {
$sql = "ALTER TABLE `playlist` CHANGE `date` `date` INT ( 11 ) UNSIGNED NOT NULL";
$db_results = Dba::query($sql);
- $sql = "ALTER TABLE `rating` CHANGE `rating` TINYINT ( 11 ) NOT NULL";
+ $sql = "ALTER TABLE `rating` CHANGE `rating` TINYINT ( 4 ) NOT NULL";
$db_results = Dba::query($sql);
self::set_version('db_version','340015');