streams/Zotlabs/Update/_1159.php

26 lines
837 B
PHP
Raw Normal View History

<?php
namespace Zotlabs\Update;
2021-12-02 23:02:31 +00:00
class _1159
{
public function run()
{
$r = q("select attach.id, attach.data, attach.hash, channel_address from attach left join channel on attach.uid = channel_id where os_storage = 1 ");
if ($r) {
foreach ($r as $rr) {
$x = dbunescbin($rr['data']);
$has_slash = (($x === 'store/' . $rr['channel_address'] . '/') ? true : false);
if (($x === 'store/' . $rr['channel_address']) || ($has_slash)) {
q("update attach set data = '%s' where id = %d",
dbesc('store/' . $rr['channel_address'] . (($has_slash) ? '' : '/' . $rr['hash'])),
dbesc($rr['id'])
);
}
}
}
return UPDATE_SUCCESS;
}
}