Skip to content

Commit

Permalink
Fix Ticket 0007696: testsuite.class.php has incorrect code on importi…
Browse files Browse the repository at this point in the history
…ng whole testsuite specification
  • Loading branch information
fmancardi committed Oct 8, 2016
1 parent fc3a52d commit 1fa41e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/functions/testsuite.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ function update($id, $name, $details, $parent_id=null, $node_order=null)

if( !is_null($node_order) && intval($node_order) > 0 )
{
$sql .= ' SET node_order=' . $this->db->prepare_int(intval($node_order));
$sql = ' SET node_order=' . $this->db->prepare_int(intval($node_order));
$sql = $sqlUpd . $sql . $where;
$result = $this->db->exec_query($sql);
}
Expand Down

0 comments on commit 1fa41e7

Please sign in to comment.