Modify

Opened 2 years ago

Closed 2 years ago

Last modified 2 years ago

#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>'; } ?>&nbsp;</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>'; } ?>&nbsp;</td>

Gruß,
noRiddle

Attachments (1)

Change History (6)

comment:1 by Torsten Riemer, 2 years ago

Stimmt, danke für die Meldung.

comment:2 by Gerhard Waldemair, 2 years ago

Resolution: fixed
Status: newclosed

In 15390:

fix #2549 - show icon_arrow_right.gif in gv_queue.php

comment:3 by Torsten Riemer, 2 years ago

Resolution: fixed
Status: closedreopened

Die Spalte wurde versehentlich ergänzt, anstatt den vorhandenen Code zu ersetzen, weshalb die Pfeile nun doppelt sind, siehe Screenshot.

comment:4 by Torsten Riemer, 2 years ago

Resolution: fixed
Status: reopenedclosed

In 15393:

revised r15390 (fix #2549 - show icon_arrow_right.gif in gv_queue.php)

comment:5 by Torsten Riemer, 2 years ago

Summary: Grünes 'icon_arrow_right.gif' wird in /admin gv_queue.php nicht angezeigtGrünes 'icon_arrow_right.gif' wird in /admin/gv_queue.php nicht angezeigt

Modify Ticket

Action
as closed The owner will remain somebody.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.