~xibo-maintainers/xibo/brorsen

« back to all changes in this revision

Viewing changes to server/lib/modules/module.class.php

  • Committer: Dan Garner
  • Date: 2012-12-02 17:48:21 UTC
  • mfrom: (263.2.6 server-141)
  • Revision ID: dan@xibo.org.uk-20121202174821-75l9ic7d9s95t1sa
Merged server-141

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
        protected $lkid;
43
43
        protected $validExtensions;
44
44
        protected $validExtensionsText;
45
 
 
 
45
        protected $previewEnabled;
 
46
        
46
47
        protected $xml;
47
48
 
48
49
        protected $existingMedia;
128
129
                $this->validExtensionsText      = Kit::ValidateParam($row['ValidExtensions'], _STRING);
129
130
                $this->validExtensions          = explode(',', $this->validExtensionsText);
130
131
                $this->validExtensionsText      = str_replace(',', ', ', $this->validExtensionsText);
 
132
                $this->previewEnabled = Kit::ValidateParam($row['PreviewEnabled'], _INT);
131
133
 
132
134
                return true;
133
135
        }