diff options
Diffstat (limited to 'Zotlabs/Update')
-rw-r--r-- | Zotlabs/Update/_1007.php | 4 | ||||
-rw-r--r-- | Zotlabs/Update/_1151.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Update/_1007.php b/Zotlabs/Update/_1007.php index eb52c5bc5..74e1bb310 100644 --- a/Zotlabs/Update/_1007.php +++ b/Zotlabs/Update/_1007.php @@ -6,10 +6,10 @@ class _1007 { function run() { $r = q("ALTER TABLE `channel` ADD `channel_r_storage` INT UNSIGNED NOT NULL DEFAULT '128', ADD `channel_w_storage` INT UNSIGNED NOT NULL DEFAULT '128', add index ( channel_r_storage ), add index ( channel_w_storage )"); - if($r && $r2) + if($r) return UPDATE_SUCCESS; return UPDATE_FAILED; } -}
\ No newline at end of file +} diff --git a/Zotlabs/Update/_1151.php b/Zotlabs/Update/_1151.php index d14baabb1..20f3180a0 100644 --- a/Zotlabs/Update/_1151.php +++ b/Zotlabs/Update/_1151.php @@ -8,7 +8,7 @@ function run() { $r3 = q("select likes.*, item.mid from likes left join item on likes.iid = item.id"); if($r3) { foreach($r3 as $rr) { - q("update likes set i_mid = '%s' where id = $d", + q("update likes set i_mid = '%s' where id = %d", dbesc($rr['mid']), intval($rr['id']) ); @@ -21,4 +21,4 @@ function run() { } -}
\ No newline at end of file +} |