Unstack list control icons.

This commit is contained in:
Nate Jones
2014-02-26 02:35:26 +00:00
parent fb662980b6
commit c34996f998

View File

@@ -137,9 +137,9 @@ echo " <td align=\"center\">\n";
echo "<tr>\n";
echo th_order_by('username', $text['label-username'], $order_by, $order);
echo "<th>".$text['label-enabled']."</th>\n";
echo "<td align='right' width='42'>\n";
echo "<td class='list_control_icons'>";
if (permission_exists('user_add')) {
echo " <a href='signup.php' alt='".$text['button-add']."'>$v_link_label_add</a>\n";
echo "<a href='signup.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
}
echo "</td>\n";
echo "<tr>\n";
@@ -159,12 +159,12 @@ echo " <td align=\"center\">\n";
echo $text['option-false'];
}
echo "&nbsp;</td>\n";
echo " <td valign='top' align='right'>\n";
echo " <td valign='top' align='right'>";
if (permission_exists('user_edit')) {
echo " <a href='usersupdate.php?id=".$row['user_uuid']."' alt='".$text['button-edit']."'>$v_link_label_edit</a>\n";
echo "<a href='usersupdate.php?id=".$row['user_uuid']."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
}
if (permission_exists('user_delete')) {
echo " <a href='userdelete.php?id=".$row['user_uuid']."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>\n";
echo "<a href='userdelete.php?id=".$row['user_uuid']."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>";
}
echo " </td>\n";
echo "</tr>\n";
@@ -180,9 +180,9 @@ echo " <td align=\"center\">\n";
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 " <td class='list_control_icons'>";
if (permission_exists('user_add')) {
echo " <a href='signup.php' alt='".$text['button-add']."'>$v_link_label_add</a>\n";
echo "<a href='signup.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
}
echo " </td>\n";
echo " </tr>\n";