]> git.mxchange.org Git - friendica.git/commitdiff
Corrected placeholders
authorMichael <heluecht@pirati.ca>
Tue, 8 May 2018 20:22:21 +0000 (20:22 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 8 May 2018 20:22:21 +0000 (20:22 +0000)
src/Database/DBStructure.php
update.php

index 7cfb48df1386736a8c041bb904a70499bd7ab210..bc12ca7907f32789291ee6102f2209050f02d016 100644 (file)
@@ -207,7 +207,7 @@ class DBStructure
        public static function update($verbose, $action, $install = false, array $tables = null, array $definition = null) {
                if ($action && !$install) {
                        Config::set('system', 'maintenance', 1);
-                       Config::set('system', 'maintenance_reason', L10n::t('%1: Database update', DBM::date().' '.date('e')));
+                       Config::set('system', 'maintenance_reason', L10n::t('%s: Database update', DBM::date().' '.date('e')));
                }
 
                $errors = '';
index b92526856b55c5359ec9c0aebfc9c164716c0932..020827397afe66b3168b8d7c7fd0a0c0fe158efd 100644 (file)
@@ -189,7 +189,7 @@ WHERE `hook` LIKE 'plugin_%'");
 
 function update_1260() {
        Config::set('system', 'maintenance', 1);
-       Config::set('system', 'maintenance_reason', L10n::t('%1: Updating author-id and owner-id in item and thread table. ', DBM::date().' '.date('e')));
+       Config::set('system', 'maintenance_reason', L10n::t('%s: Updating author-id and owner-id in item and thread table. ', DBM::date().' '.date('e')));
 
        $items = dba::p("SELECT `id`, `owner-link`, `owner-name`, `owner-avatar`, `network` FROM `item`
                WHERE `owner-id` = 0 AND `owner-link` != ''");