summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2007-02-03 17:45:00 +0100
committerOliver Tappe2007-02-03 17:45:00 +0100
commit80afaee2da19af86e884292b6501bf98d23cbd56 (patch)
tree5f46e220aa9c2687e3efa4505d80fd9e777844eb /config-db
parent* updated to new layout of repository, from now on this script will always work (diff)
downloadcore-80afaee2da19af86e884292b6501bf98d23cbd56.tar.gz
core-80afaee2da19af86e884292b6501bf98d23cbd56.tar.xz
core-80afaee2da19af86e884292b6501bf98d23cbd56.zip
* fixed problems with regards to extractTranslations.pl
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@675 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db')
-rw-r--r--config-db/OpenSLX/ConfigDB.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/config-db/OpenSLX/ConfigDB.pm b/config-db/OpenSLX/ConfigDB.pm
index 3323ed04..fce953b6 100644
--- a/config-db/OpenSLX/ConfigDB.pm
+++ b/config-db/OpenSLX/ConfigDB.pm
@@ -178,16 +178,15 @@ sub connectConfigDB
my $dbModule = "OpenSLX::MetaDB::$dbType";
unless (eval "require $dbModule") {
if ($! == 2) {
- die _tr("Unable to load DB-module <%s>\n"
- ."that database type is not supported (yet?)\n", $dbModule);
+ die _tr("Unable to load DB-module <%s>\nthat database type is not supported (yet?)\n",
+ $dbModule);
} else {
die _tr("Unable to load DB-module <%s> (%s)\n", $dbModule, $@);
}
}
my $modVersion = $dbModule->VERSION;
if ($modVersion < $VERSION) {
- confess _tr('Could not load module <%s> (Version <%s> required, '
- .'but <%s> found)',
+ confess _tr('Could not load module <%s> (Version <%s> required, but <%s> found)',
$dbModule, $VERSION, $modVersion);
}
$dbModule->import;