Osticket: Ordenar error para banlist.inc.php

Creado en 3 nov. 2016  ·  2Comentarios  ·  Fuente: osTicket/osTicket

En la rama de desarrollo y la versión 1.9.8.1 (es posible que otra versión también tenga el mismo error), línea 113-116 en banlist.inc.php, la cadena "staff.php" debe cambiarse a "banlist.php". sort no funcionaría lo que se menciona en el número 1725.

            <th width="56%"><a <?php echo $email_sort; ?> href="staff.php?<?php echo $qstr; ?>&sort=email"><?php echo __('Email Address');?></a></th>
            <th width="10%"><a  <?php echo $status_sort; ?> href="staff.php?<?php echo $qstr; ?>&sort=status"><?php echo __('Ban Status');?></a></th>
            <th width="10%"><a <?php echo $created_sort; ?> href="staff.php?<?php echo $qstr; ?>&sort=created"><?php echo __('Date Added');?></a></th>
            <th width="20%"><a <?php echo $updated_sort; ?> href="staff.php?<?php echo $qstr; ?>&sort=updated"><?php echo __('Last Updated');?></a></th>

para

        <th width="56%"><a <?php echo $email_sort; ?> href="banlist.php?<?php echo $qstr; ?>&sort=email"><?php echo __('Email Address');?></a></th>
        <th width="10%"><a  <?php echo $status_sort; ?> href="banlist.php?<?php echo $qstr; ?>&sort=status"><?php echo __('Ban Status');?></a></th>
        <th width="10%"><a <?php echo $created_sort; ?> href="banlist.php?<?php echo $qstr; ?>&sort=created"><?php echo __('Date Added');?></a></th>
        <th width="20%"><a <?php echo $updated_sort; ?> href="banlist.php?<?php echo $qstr; ?>&sort=updated"><?php echo __('Last Updated');?></a></th>
bug

Todos 2 comentarios

Entonces 1.9.8.1 es realmente antiguo en este momento. Realmente deberías actualizar tu versión.

Tengo una solicitud de extracción pendiente sobre este tema. Gracias.

¿Fue útil esta página
0 / 5 - 0 calificaciones