diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-06-07 17:42:13 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-06-07 17:42:13 +0200 |
commit | 7cc8c369cb6a01cffb58215966844b53794f32f4 (patch) | |
tree | 758fc647c3e5d6dc36ec62e8e34c4471b388f97d /update.php | |
parent | 1d832618a4340526092fce9e49f4580f767e1526 (diff) | |
download | volse-hubzilla-7cc8c369cb6a01cffb58215966844b53794f32f4.tar.gz volse-hubzilla-7cc8c369cb6a01cffb58215966844b53794f32f4.tar.bz2 volse-hubzilla-7cc8c369cb6a01cffb58215966844b53794f32f4.zip |
Add support for PNG images with alpha
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/update.php b/update.php index 35a6771b0..0f7bf664d 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1148 ); +define( 'UPDATE_VERSION' , 1149 ); /** * @@ -1283,3 +1283,9 @@ function update_1147() { return UPDATE_SUCCESS ; } +function update_1148() { + $r = q("ALTER TABLE photo ADD type CHAR(128) NOT NULL DEFAULT 'image/jpeg' AFTER filename"); + if (!$r) + return UPDATE_FAILED; + return UPDATE_SUCCESS; +} |