Fix issue return value in write context with php 5.4 - refs BT#9893 #tmi

1.10.x
Yannick Warnier 10 years ago
parent c96ccedc07
commit ee1fe88b4c
  1. 3
      src/Chamilo/CoreBundle/Entity/SequenceResource.php

@ -90,7 +90,8 @@ class SequenceResource
*/
public function hasGraph()
{
return !empty($this->getSequence()->getGraph()) ? true : false;
$graph = $this->getSequence()->getGraph();
return !empty($graph) ? true : false;
}
/**

Loading…
Cancel
Save