~xibo-maintainers/xibo/tempel

« back to all changes in this revision

Viewing changes to lib/Service/SanitizeService.php

  • Committer: Dan Garner
  • Date: 2016-06-28 15:02:11 UTC
  • mto: This revision was merged to the branch mainline in revision 528.
  • Revision ID: git-v1:51031805c36c1d366fa330b2c2320d1927c57003
Fixes for upgrade steps

Show diffs side-by-side

added added

removed removed

Lines of Context:
258
258
    {
259
259
        $array = $this->getParam($param, $default, $source);
260
260
 
261
 
        if ($array == null || !is_array($array))
 
261
        if ($array == null)
262
262
            return [];
263
263
 
264
264
        return array_map('intval', $array);