$profile["pub_keywords"] = profile_clean_keywords($profile["pub_keywords"]);
$r = q(
- "UPDATE `contact` SET `about` = '%s', `location` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `self` AND `uid` = %d",
+ "UPDATE `contact` SET `about` = '%s', `location` = '%s', `keywords` = '%s', `gender` = '%s'
+ WHERE `self` AND `uid` = %d",
DBA::escape($profile["about"]),
DBA::escape($profile["locality"]),
DBA::escape($profile["pub_keywords"]),
function update_1260()
{
Config::set('system', 'maintenance', 1);
- Config::set('system', 'maintenance_reason', L10n::t('%s: Updating author-id and owner-id in item and thread table. ', DateTimeFormat::utcNow().' '.date('e')));
+ Config::set(
+ 'system',
+ 'maintenance_reason',
+ L10n::t(
+ '%s: Updating author-id and owner-id in item and thread table. ',
+ DateTimeFormat::utcNow().' '.date('e')
+ )
+ );
$items = DBA::p("SELECT `id`, `owner-link`, `owner-name`, `owner-avatar`, `network` FROM `item`
WHERE `owner-id` = 0 AND `owner-link` != ''");
function update_1261()
{
// This fixes the results of an issue in the develop branch of 2018-05.
- DBA::update('contact', ['blocked' => false, 'pending' => false], ['uid' => 0, 'blocked' => true, 'pending' => true]);
+ DBA::update(
+ 'contact',
+ ['blocked' => false, 'pending' => false],
+ ['uid' => 0, 'blocked' => true, 'pending' => true]
+ );
return Update::SUCCESS;
}
function update_1278()
{
Config::set('system', 'maintenance', 1);
- Config::set('system', 'maintenance_reason', L10n::t('%s: Updating post-type.', DateTimeFormat::utcNow().' '.date('e')));
+ Config::set(
+ 'system',
+ 'maintenance_reason',
+ L10n::t(
+ '%s: Updating post-type.',
+ DateTimeFormat::utcNow().' '.date('e')
+ )
+ );
Item::update(['post-type' => Item::PT_PAGE], ['bookmark' => true]);
Item::update(['post-type' => Item::PT_PERSONAL_NOTE], ['type' => 'note']);
{
// Updates missing `uri-id` values
- DBA::e("UPDATE `item-activity` INNER JOIN `item` ON `item`.`iaid` = `item-activity`.`id` SET `item-activity`.`uri-id` = `item`.`uri-id` WHERE `item-activity`.`uri-id` IS NULL OR `item-activity`.`uri-id` = 0");
- DBA::e("UPDATE `item-content` INNER JOIN `item` ON `item`.`icid` = `item-content`.`id` SET `item-content`.`uri-id` = `item`.`uri-id` WHERE `item-content`.`uri-id` IS NULL OR `item-content`.`uri-id` = 0");
+ DBA::e("UPDATE `item-activity`
+ INNER JOIN `item` ON `item`.`iaid` = `item-activity`.`id`
+ SET `item-activity`.`uri-id` = `item`.`uri-id`
+ WHERE `item-activity`.`uri-id` IS NULL OR `item-activity`.`uri-id` = 0");
+ DBA::e("UPDATE `item-content`
+ INNER JOIN `item` ON `item`.`icid` = `item-content`.`id`
+ SET `item-content`.`uri-id` = `item`.`uri-id`
+ WHERE `item-content`.`uri-id` IS NULL OR `item-content`.`uri-id` = 0");
return Update::SUCCESS;
}
$fail++;
} else {
DBA::update('contact', ['gender' => $key], ['id' => $gender['id']]);
- logger::log('Updated contact ' . $gender['id'] . ' to gender ' . $key . ' (was: ' . $gender['gender'] . ')');
+ logger::log('Updated contact ' . $gender['id'] . ' to gender ' . $key .
+ ' (was: ' . $gender['gender'] . ')');
$success++;
}
}