Skip to content

Commit

Permalink
Dolibarize
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Mar 11, 2018
1 parent e393621 commit 7ffce2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion htdocs/core/class/html.formticketsup.class.php
Expand Up @@ -624,7 +624,7 @@ public function selectSeveritiesTickets($selected = '', $htmlname = 'ticketsever
$filterarray = explode(',', $filtertype);
}

$ticketstat->load_cache_severities_tickets();
$ticketstat->loadCacheSeveritiesTickets();

print '<select id="select' . $htmlname . '" class="flat select_ticketseverity" name="' . $htmlname . '">';
if ($empty) {
Expand Down
4 changes: 2 additions & 2 deletions htdocs/ticketsup/class/ticketsup.class.php
Expand Up @@ -1092,7 +1092,7 @@ function load_cache_categories_tickets()
*
* @return int Nb lignes chargees, 0 si deja chargees, <0 si ko
*/
public function load_cache_severities_tickets()
public function loadCacheSeveritiesTickets()
{
global $langs;

Expand All @@ -1105,7 +1105,7 @@ public function load_cache_severities_tickets()
$sql .= " FROM " . MAIN_DB_PREFIX . "c_ticketsup_severity";
$sql .= " WHERE active > 0";
$sql .= " ORDER BY pos";
dol_syslog(get_class($this) . "::load_cache_severities_tickets sql=" . $sql, LOG_DEBUG);
dol_syslog(get_class($this) . "::loadCacheSeveritiesTickets sql=" . $sql, LOG_DEBUG);
$resql = $this->db->query($sql);
if ($resql) {
$num = $this->db->num_rows($resql);
Expand Down

1 comment on commit 7ffce2a

@jfefe
Copy link
Contributor

@jfefe jfefe commented on 7ffce2a Mar 11, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please see PR #8340

Please sign in to comment.