summaryrefslogtreecommitdiff
path: root/bin/update.sh
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-10-29 19:12:39 +0000
committerthomascube <thomas@roundcube.net>2008-10-29 19:12:39 +0000
commitcbffc2f0aaffbdc963a790dd79cdd8ba827e672b (patch)
treee0b8eef7fe405b945e92ee73ff8678ae3437b6cc /bin/update.sh
parent60f9a567800b70d9621cffc8d117b2cffb654dbf (diff)
Let update script handle the replacement of 'multiple_identities' by 'identities_level'
Diffstat (limited to 'bin/update.sh')
-rwxr-xr-xbin/update.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/update.sh b/bin/update.sh
index 5be763320..a9a917c8c 100755
--- a/bin/update.sh
+++ b/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";