diff --git a/module/branch/ui/batchedit.html.php b/module/branch/ui/batchedit.html.php index 3672b9fb53..66907ad4a0 100644 --- a/module/branch/ui/batchedit.html.php +++ b/module/branch/ui/batchedit.html.php @@ -23,7 +23,7 @@ formBatchPanel set::name('branchID'), set::label($lang->idAB), set::control('hidden'), - set::hidden(true), + set::hidden(true) ), formBatchItem ( @@ -31,7 +31,7 @@ formBatchPanel set::label($lang->idAB), set::control('index'), set::width('64px'), - set::disabled('{branchID} == 0'), + set::disabled('{branchID} == 0') ), formBatchItem ( @@ -49,8 +49,8 @@ formBatchPanel set::name("status"), set::label($lang->branch->status), set::control('select'), - set::items($lang->branch->statusList), - ), + set::items($lang->branch->statusList) + ) ); /* ====== Render page ====== */ render(); diff --git a/module/branch/ui/create.html.php b/module/branch/ui/create.html.php index 03a8e1db30..a119499760 100644 --- a/module/branch/ui/create.html.php +++ b/module/branch/ui/create.html.php @@ -22,7 +22,7 @@ formPanel set::required(true), input ( - set::name('name'), + set::name('name') ) ), formGroup @@ -31,9 +31,9 @@ formPanel textarea ( set::name('desc'), - set::rows('5'), + set::rows('5') ) - ), + ) ); render(); diff --git a/module/branch/ui/edit.html.php b/module/branch/ui/edit.html.php index 17fa1ce848..512a822b82 100644 --- a/module/branch/ui/edit.html.php +++ b/module/branch/ui/edit.html.php @@ -40,7 +40,7 @@ formPanel ( set::name('desc'), set::value($branch->desc), - set::rows('5'), + set::rows('5') ) - ), + ) ); diff --git a/module/branch/ui/manage.html.php b/module/branch/ui/manage.html.php index 5b9e0b68ba..f92a313b75 100644 --- a/module/branch/ui/manage.html.php +++ b/module/branch/ui/manage.html.php @@ -61,7 +61,7 @@ modal ( set::name('targetBranch'), set::items($branchPairs), - set::required(true), + set::required(true) ), div ( @@ -72,7 +72,7 @@ modal set::name('createBranch'), set::text($lang->branch->create), set::value(1), - on::change('createBranch'), + on::change('createBranch') ) ) ), @@ -98,7 +98,7 @@ modal textarea ( set::name('desc'), - set::rows('5'), + set::rows('5') ) ) ) @@ -140,7 +140,7 @@ dtable set::onCheckChange(jsRaw('checkedChange')), set::footToolbar($footToolbar), set::footPager( - usePager(), + usePager() ) );