projects
/
fa-stable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
05b1dfa
)
Error line break on supplier_list_cells when label is set to null. Fixed by @notrinos...
author
Joe Hunt
<joe.hunt.consulting@gmail.com>
Sat, 15 Sep 2018 08:19:13 +0000
(10:19 +0200)
committer
Joe Hunt
<joe.hunt.consulting@gmail.com>
Sat, 15 Sep 2018 08:19:13 +0000
(10:19 +0200)
includes/ui/ui_lists.inc
patch
|
blob
|
history
diff --git
a/includes/ui/ui_lists.inc
b/includes/ui/ui_lists.inc
index ca85d26e74d9ae77e38d2a208b3b19433d9f5cc6..db706969e68afad534bae17d8ef6cf7adcd5e6fc 100644
(file)
--- a/
includes/ui/ui_lists.inc
+++ b/
includes/ui/ui_lists.inc
@@
-551,10
+551,11
@@
function supplier_list_cells($label, $name, $selected_id=null, $all_option=false
$submit_on_change=false, $all=false, $editkey = false)
{
if ($label != null)
- echo "<td>$label</td><td>\n";
- echo supplier_list($name, $selected_id, $all_option, $submit_on_change,
+ echo "<td>$label</td>\n";
+ echo "<td>";
+ echo supplier_list($name, $selected_id, $all_option, $submit_on_change,
$all, $editkey);
-
echo "</td>\n";
+ echo "</td>\n";
}
function supplier_list_row($label, $name, $selected_id=null, $all_option = false,