Missed a return statement in the setupInstall method. This was causing setup to fail every time, because the function returned a defined value.

This commit is contained in:
ian%hixie.ch 2001-11-11 11:48:14 +00:00
Родитель 333b70e6e1
Коммит c2b7af4e48
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -385,6 +385,7 @@ sub setupInstall {
my $userDataSource = $app->getService('dataSource.user');
$userDataSource->addRight($app, 'cosesEditor');
$self->dump(9, 'done configuring COSES editor');
return;
}