Ticket #5790 (closed Bugs: fixed)

Opened 1 year ago

Last modified 1 year ago

Endpoint manager sql request

Reported by: Renji Assigned to: tm1000
Priority: regression Milestone: 2.11
Component: Endpoint Manager (OSS) Version: 2.10-branch
Keywords: Cc:
Confirmation: Unreviewed Distro:
Backend Engine: All Distro Ver:
Backend Ver: SVN Revision (if applicable):

Description (Last modified by tm1000)

If extension begin by 0 like 02050 the sql querry fail:

$sql = "UPDATE endpointman_line_list SET line = '" . $row['line'] . "', ext = " . $row['ext'] . ", description = '" . addslashes($name) . "' WHERE luid =  " . $row['luid'];

to

$sql = "UPDATE endpointman_line_list SET line = '" . $row['line'] . "', ext = '" . $row['ext'] . "', description = '" . addslashes($name) . "' WHERE luid =  " . $row['luid'];

In includes/functions.inc line 458

Change History

06/07/12 18:12:44 changed by tm1000

  • status changed from new to closed.
  • resolution set to fixed.
  • description changed.

Fixed in 2.10.4.1 Thanks.