Skip to content

Commit

Permalink
Fix array
Browse files Browse the repository at this point in the history
  • Loading branch information
AnaelMobilia authored and trasher committed Jan 6, 2017
1 parent 89234bc commit 620b017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/devapi/dbiterator.rst
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ A field name and its wanted value:
$DB->request('glpi_computers', ['is_deleted' => 0]);
// => SELECT * FROM `glpi_computers` WHERE `is_deleted` = 0
$DB->request('glpi_computers', ['is_deleted' => 0
$DB->request('glpi_computers', ['is_deleted' => 0,
'name' => 'foo']);
// => SELECT * FROM `glpi_computers` WHERE `is_deleted` = 0 AND `name` = 'foo'
Expand Down

0 comments on commit 620b017

Please sign in to comment.