Skip to content

Commit

Permalink
Fix #32
Browse files Browse the repository at this point in the history
object => jeeObject
  • Loading branch information
slobberbone committed Jul 13, 2020
1 parent 3a4410b commit 2f93def
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions desktop/php/JPI.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@
<select id="sel_object" class="eqLogicAttr form-control" data-l1key="object_id">
<option value="">{{Aucun}}</option>
<?php
foreach (object::all() as $object) {
echo '<option value="' . $object->getId() . '">' . $object->getName() . '</option>';
foreach (jeeObject::all() as $jeeObject) {
echo '<option value="' . $jeeObject->getId() . '">' . $jeeObject->getName() . '</option>';
}
?>
</select>
Expand Down

0 comments on commit 2f93def

Please sign in to comment.