Modify ↓
#2549 closed Bug/Fehler (fixed)
Grünes 'icon_arrow_right.gif' wird in /admin/gv_queue.php nicht angezeigt
| Reported by: | noRiddle | Owned by: | somebody |
|---|---|---|---|
| Priority: | normal | Milestone: | modified-shop-2.0.8.0 |
| Component: | Admin | Version: | 2.0.7.2 |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description
in /admin gv_queue.php wird bei markiertem Gutschein das grüne 'icon_arrow_right.gif' nicht angezeigt.
Lösung:
Anstatt
<td class="dataTableContent txta-r"><?php if ((!isset($_GET['gid']) || ($_GET['gid'] == $gv_list['unique_id'])) && !isset($gInfo)) { echo xtc_image(DIR_WS_IMAGES . 'icon_arrow_right.gif', ICON_ARROW_RIGHT); } else { echo '<a href="' . xtc_href_link(FILENAME_GV_QUEUE, 'page=' . $page . '&gid=' . $gv_list['unique_id']) . '">' . xtc_image(DIR_WS_IMAGES . 'icon_arrow_grey.gif', IMAGE_ICON_INFO) . '</a>'; } ?> </td>
das
<td class="dataTableContent txta-r"><?php if (isset($gInfo) && is_object($gInfo) && ($gv_list['unique_id'] == $gInfo->unique_id)) { echo xtc_image(DIR_WS_IMAGES . 'icon_arrow_right.gif', ICON_ARROW_RIGHT); } else { echo '<a href="' . xtc_href_link(FILENAME_GV_QUEUE, 'page=' . $page . '&gid=' . $gv_list['unique_id']) . '">' . xtc_image(DIR_WS_IMAGES . 'icon_arrow_grey.gif', IMAGE_ICON_INFO) . '</a>'; } ?> </td>
Gruß,
noRiddle
Attachments (1)
Change History (6)
comment:1 by , 2 years ago
comment:3 by , 2 years ago
| Resolution: | fixed |
|---|---|
| Status: | closed → reopened |
Die Spalte wurde versehentlich ergänzt, anstatt den vorhandenen Code zu ersetzen, weshalb die Pfeile nun doppelt sind, siehe Screenshot.
by , 2 years ago
comment:5 by , 2 years ago
| Summary: | Grünes 'icon_arrow_right.gif' wird in /admin gv_queue.php nicht angezeigt → Grünes 'icon_arrow_right.gif' wird in /admin/gv_queue.php nicht angezeigt |
|---|
Note:
See TracTickets
for help on using tickets.

Stimmt, danke für die Meldung.