aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-01-09 19:20:10 -0800
committerfriendica <info@friendica.com>2014-01-09 19:20:10 -0800
commita309bc0d478f5335853ed0cb7a0f0bfe41110643 (patch)
tree343ce7d473210f22020ebd9789304d7c891c5b07 /install/update.php
parent49882f2be4ef9d1b28c72f8101fe9b15d7176ff6 (diff)
downloadvolse-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.php11
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;
+}
+
+