fix syntax error

This commit is contained in:
Uwe Steinmann 2020-05-19 11:54:39 +02:00
parent c946126e53
commit 98374b513d

View File

@ -52,7 +52,7 @@ class SeedDMS_View_RemoveUserFromProcesses extends SeedDMS_Bootstrap_Style {
<?php echo createHiddenFieldWithKey('removefromprocesses'); ?> <?php echo createHiddenFieldWithKey('removefromprocesses'); ?>
<?php <?php
$options = array(array(0, getMLText('do_no_transfer_to_user')); $options = array(array(0, getMLText('do_no_transfer_to_user')));
foreach ($allusers as $currUser) { foreach ($allusers as $currUser) {
if ($currUser->isGuest() || ($currUser->getID() == $rmuser->getID()) ) if ($currUser->isGuest() || ($currUser->getID() == $rmuser->getID()) )
continue; continue;