Skip to content
Snippets Groups Projects

explo new storm with more volatile

Merged Sebastien ANDRE requested to merge explo_new_storm into master
Compare and Show latest version
5 files
+ 170
161
Preferences
Compare changes
Files
5
@@ -481,14 +481,17 @@ class Class_SessionActivity extends Storm_Model_Abstract {
}
/** @return string */
public function getLibelleActivity() {
return $this->getActivity()->getLibelle();
return ($activity = $this->getActivity())
? ($activity->getLibelle() ?? '')
: '';
}
public function getActivityDescription() {
return $this->getActivity()->getDescription();
return ($activity = $this->getActivity())
? $activity->getDescription()
: '';
}