diff options
author | friendica <info@friendica.com> | 2014-01-09 19:20:10 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-09 19:20:10 -0800 |
commit | a309bc0d478f5335853ed0cb7a0f0bfe41110643 (patch) | |
tree | 343ce7d473210f22020ebd9789304d7c891c5b07 /install/update.php | |
parent | 49882f2be4ef9d1b28c72f8101fe9b15d7176ff6 (diff) | |
download | volse-hubzilla-a309bc0d478f5335853ed0cb7a0f0bfe41110643.tar.gz volse-hubzilla-a309bc0d478f5335853ed0cb7a0f0bfe41110643.tar.bz2 volse-hubzilla-a309bc0d478f5335853ed0cb7a0f0bfe41110643.zip |
only let visitors remove their own files.
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index 5025222a6..3e04df51b 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1089 ); +define( 'UPDATE_VERSION' , 1090 ); /** * @@ -977,3 +977,12 @@ ADD `deny_gid` MEDIUMTEXT NOT NULL DEFAULT ''"); return UPDATE_FAILED; } +function update_r1089() { + $r = q("ALTER TABLE `attach` ADD `creator` CHAR( 128 ) NOT NULL DEFAULT '' AFTER `hash` , +ADD INDEX ( `creator` ) "); + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} + + |