Unstack list control icons.

This commit is contained in:
Nate Jones
2014-02-26 02:52:43 +00:00
parent 074e9e189b
commit aa313a66da
3 changed files with 16 additions and 16 deletions
+7 -7
View File
@@ -110,8 +110,8 @@ require_once "resources/paging.php";
echo th_order_by('menu_name', $text['label-name'], $order_by, $order);
echo th_order_by('menu_language', $text['label-language'], $order_by, $order);
echo th_order_by('menu_description', $text['label-description'], $order_by, $order);
echo "<td align='right' width='42'>\n";
echo " <a href='menu_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>\n";
echo "<td class='list_control_icons'>";
echo "<a href='menu_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
echo "</td>\n";
echo "<tr>\n";
@@ -121,9 +121,9 @@ require_once "resources/paging.php";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['menu_name']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['menu_language']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['menu_description']."&nbsp;</td>\n";
echo " <td valign='top' align='right'>\n";
echo " <a href='menu_edit.php?id=".$row['menu_uuid']."' alt='".$text['button-edit']."'>$v_link_label_edit</a>\n";
echo " <a href='menu_delete.php?id=".$row['menu_uuid']."&menu_uuid=".$row['menu_uuid']."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>\n";
echo " <td class='list_control_icons'>";
echo "<a href='menu_edit.php?id=".$row['menu_uuid']."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
echo "<a href='menu_delete.php?id=".$row['menu_uuid']."&menu_uuid=".$row['menu_uuid']."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>";
echo " </td>\n";
echo "</tr>\n";
if ($c==0) { $c=1; } else { $c=0; }
@@ -137,8 +137,8 @@ require_once "resources/paging.php";
echo " <tr>\n";
echo " <td width='33.3%' nowrap>&nbsp;</td>\n";
echo " <td width='33.3%' align='center' nowrap>$paging_controls</td>\n";
echo " <td width='33.3%' align='right'>\n";
echo " <a href='menu_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>\n";
echo " <td class='list_control_icons'>";
echo "<a href='menu_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
echo " </td>\n";
echo " </tr>\n";
echo " </table>\n";