From 708c914b71d349c050ead728a583422fef215dca Mon Sep 17 00:00:00 2001 From: thomasb Date: Wed, 29 Oct 2008 19:12:39 +0000 Subject: Let update script handle the replacement of 'multiple_identities' by 'identities_level' git-svn-id: https://svn.roundcube.net/trunk@2023 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/bin/update.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'roundcubemail/bin') diff --git a/roundcubemail/bin/update.sh b/roundcubemail/bin/update.sh index 5be763320..a9a917c8c 100755 --- a/roundcubemail/bin/update.sh +++ b/roundcubemail/bin/update.sh @@ -19,7 +19,7 @@ if ($RCI->configured) { echo "(These config options should be present in the current configuration)\n"; foreach ($messages['missing'] as $msg) { - echo '- ' . $msg['prop'] . ($msg['name'] ? ': ' . $msg['name'] : '') . "\n"; + echo "- '" . $msg['prop'] . ($msg['name'] ? "': " . $msg['name'] : "'") . "\n"; $err++; } echo "\n"; @@ -31,7 +31,7 @@ if ($RCI->configured) { echo "(These config options have been replaced or renamed)\n"; foreach ($messages['replaced'] as $msg) { - echo "- " . $msg['prop'] . "\t\t was replaced by " . $msg['replacement'] . "\n"; + echo "- '" . $msg['prop'] . "' was replaced by '" . $msg['replacement'] . "'\n"; $err++; } echo "\n"; @@ -43,7 +43,7 @@ if ($RCI->configured) { echo "(You still have some obsolete or inexistent properties set. This isn't a problem but should be noticed)\n"; foreach ($messages['obsolete'] as $msg) { - echo "- " . $msg['prop'] . ($msg['name'] ? ': ' . $msg['name'] : '') . "\n"; + echo "- '" . $msg['prop'] . ($msg['name'] ? "': " . $msg['name'] : "'") . "\n"; $err++; } echo "\n"; -- cgit v1.2.3