Solved warnings
authorJeroen De Meerleer <me@jeroened.be>
Fri, 21 Dec 2018 09:42:24 +0000 (10:42 +0100)
committerHypolite Petovan <hypolite@mrpetovan.com>
Mon, 21 Jan 2019 14:13:08 +0000 (09:13 -0500)
using php code sniffer

update.php

index 6dc2772..b802139 100644 (file)
@@ -51,7 +51,8 @@ function update_1178()
                $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"]),
@@ -212,7 +213,14 @@ WHERE `hook` LIKE 'plugin_%'");
 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` != ''");
@@ -253,14 +261,25 @@ function update_1260()
 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']);
@@ -274,8 +293,14 @@ function update_1288()
 {
        // 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;
 }
@@ -318,7 +343,8 @@ function update_1293()
                                $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++;
                        }
                }