aboutsummaryrefslogtreecommitdiffstats
path: root/update.php
diff options
context:
space:
mode:
authorZach Prezkuta <fermion@gmx.com>2012-06-02 16:11:31 -0600
committerZach Prezkuta <fermion@gmx.com>2012-06-03 14:53:30 -0600
commit77962aa79df5671e206635cc6980e4b1ac969bf9 (patch)
treed3d5fe2a3db5a201a0f5f1d083053f6810f54be1 /update.php
parentb000088ded0d0f677114da0af1c5ea6436a97560 (diff)
downloadvolse-hubzilla-77962aa79df5671e206635cc6980e4b1ac969bf9.tar.gz
volse-hubzilla-77962aa79df5671e206635cc6980e4b1ac969bf9.tar.bz2
volse-hubzilla-77962aa79df5671e206635cc6980e4b1ac969bf9.zip
Fix bugs in the retraction code
Currently, the following seems to be the functional status: For a Diaspora top-level post: Friendica comments show up AND delete Diaspora comments show up AND delete for top-level owner Diaspora comments show up for non-owner Diaspora comments sometimes don't delete for non-owner -> Appears to be Diaspora's fault, as a "not a valid object" error shows up in the log Friendica likes show up, but can't unlike (Friendica doesn't even message Diaspora) Diaspora likes show up Diaspora non-owner can't unlike -> Same as comments, seems to be Diaspora's fault For a Friendica top-level post: Friendica comments show up AND delete Diaspora comments show up AND delete Friendica likes don't show up in Diaspora sometimes Friendica doesn't even message Diaspora for unlikes (sometimes?) Diaspora likes and unlikes work
Diffstat (limited to 'update.php')
-rw-r--r--update.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php
index 9d534a127..b542d75ba 100644
--- a/update.php
+++ b/update.php
@@ -1276,7 +1276,7 @@ function update_1146() {
/*
function update_xxxx() {
- $r1 = q("ALTER TABLE `sign` MODIFY `iid` SET DEFAULT '0'");
+ $r1 = q("ALTER TABLE `sign` ALTER `iid` SET DEFAULT '0'");
$r2 = q("ALTER TABLE `sign` ADD `retract_iid` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `iid`");
$r3 = q("ALTER TABLE `sign` ADD INDEX ( `retract_iid` )");
if((! $r1) || (! $r2) || (! $r3))