Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: Public interface - filed name is “statut” instead of “status”. #13519

Closed
jukyyy opened this issue Apr 7, 2020 · 1 comment
Closed
Labels
Bug This is a bug (something does not work as expected)

Comments

@jukyyy
Copy link

jukyyy commented Apr 7, 2020

Bug

Public interface - field name is “statut” should be “status”.

Environment

  • Version: 110.0.3
  • OS: Linux Debian 10.3
  • Web server: Apache/2.4.38
  • PHP: 7.3.14-1~deb10u1
  • Database: MariaDB 5.5.5-10.3.22-MariaDB-0+deb10u1
  • URL(s): /public/ticket/list.php

Expected and actual behavior

Field name is “statut” should be “status”.

Steps to reproduce the behavior

navigate to: /public/ticket/list.php

@jukyyy jukyyy added the Bug This is a bug (something does not work as expected) label Apr 7, 2020
@philazerty
Copy link
Contributor

philazerty commented Apr 10, 2020

Hi,
Patch for public/ticket/list.php line 211 : // Definition of fields for list $arrayfields = array( 't.datec' => array('label' => $langs->trans("Date"), 'checked' => 1), 't.date_read' => array('label' => $langs->trans("TicketReadOn"), 'checked' => 0), 't.date_close' => array('label' => $langs->trans("TicketCloseOn"), 'checked' => 0), 't.ref' => array('label' => $langs->trans("Ref"), 'checked' => 1), //'t.track_id' => array('label' => $langs->trans("IDTracking"), 'checked' => 0), 't.fk_statut' => array('label' => $langs->trans("**Status**"), 'checked' => 1), 't.subject' => array('label' => $langs->trans("Subject"), 'checked' => 1), 'type.code' => array('label' => $langs->trans("Type"), 'checked' => 1), 'category.code' => array('label' => $langs->trans("Category"), 'checked' => 1), 'severity.code' => array('label' => $langs->trans("Severity"), 'checked' => 1), 't.progress' => array('label' => $langs->trans("Progression"), 'checked' => 0), //'t.fk_contract' => array('label' => $langs->trans("Contract"), 'checked' => 0), 't.fk_user_create' => array('label' => $langs->trans("Author"), 'checked' => 1), 't.fk_user_assign' => array('label' => $langs->trans("AssignedTo"), 'checked' => 0),

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug This is a bug (something does not work as expected)
Projects
None yet
Development

No branches or pull requests

2 participants