From bcab1c361d70161ca2a5b19b7bad5baa307cbdd0 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Thu, 16 Aug 2007 16:00:17 +0000 Subject: * fixed bug that caused slxos-export to complain about the missing function start_transaction() git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1323 95ad53e4-c205-0410-b2fa-d234c58c8868 --- config-db/OpenSLX/ConfigDB.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config-db/OpenSLX') diff --git a/config-db/OpenSLX/ConfigDB.pm b/config-db/OpenSLX/ConfigDB.pm index 7bcce91d..ed86c8e1 100644 --- a/config-db/OpenSLX/ConfigDB.pm +++ b/config-db/OpenSLX/ConfigDB.pm @@ -1044,12 +1044,12 @@ sub incrementGlobalCounter my $self = shift; my $counterName = shift; - $self->start_transaction(); + $self->startTransaction(); my $value = $self->fetchGlobalInfo($counterName); return unless defined $value; my $newValue = $value + 1; $self->changeGlobalInfo($counterName, $newValue); - $self->commit_transaction(); + $self->commitTransaction(); return $value; } -- cgit v1.2.3-55-g7522