From: Friendika Date: Tue, 18 Jan 2011 00:28:32 +0000 (-0800) Subject: repair any bad links in activity objects X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=050618a2b690ad2e2d8e84afbada8b12f9da0f01;p=friendica.git repair any bad links in activity objects --- diff --git a/boot.php b/boot.php index d168a2b8e2..13e1e17936 100644 --- a/boot.php +++ b/boot.php @@ -2,8 +2,8 @@ set_time_limit(0); -define ( 'BUILD_ID', 1031 ); -define ( 'FRIENDIKA_VERSION', '2.01.1002' ); +define ( 'BUILD_ID', 1032 ); +define ( 'FRIENDIKA_VERSION', '2.01.1003' ); define ( 'DFRN_PROTOCOL_VERSION', '2.0' ); define ( 'EOL', "
\r\n" ); diff --git a/update.php b/update.php index ae0e35531d..7aacffb40b 100644 --- a/update.php +++ b/update.php @@ -302,3 +302,18 @@ function update_1030() { } +function update_1031() { + // Repair any bad links that slipped into the item table + $r = q("SELECT `id`, `object` FROM `item` WHERE `object` != '' "); + if($r && count($r)) { + foreach($r as $rr) { + if(strstr($rr['object'],'type="http')) { + q("UPDATE `item` SET `object` = '%s' WHERE `id` = %d LIMIT 1", + dbesc(str_replace('type="http','href="http',$rr['object'])), + intval($rr['id']) + ); + } + } + } +} +