* Fix the problem of project admin group.

This commit is contained in:
tianshujie98
2021-06-02 09:02:51 +08:00
parent 984351e067
commit f335d5747d
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -15,6 +15,8 @@ function addItem(obj)
function deleteItem(obj)
{
if($("table tr").size() < 3) return false;
var $currentLine= $(obj).closest('tr');
$currentLine.remove();
}
@@ -72,7 +72,7 @@
<td class='text-center form-actions' colspan='5'>
<?php
echo html::submitButton();
echo html::linkButton($lang->goback, $this->createLink('group', 'browse'), '', '', 'btn btn-wide');
echo html::linkButton($lang->goback, $this->createLink('group', 'browse'), 'self', '', 'btn btn-wide');
echo html::hidden('foo'); // Just a var, to make sure $_POST is not empty.
?>
</td>