Changeset 159 for Dev/trunk/classes/Session.php
- Timestamp:
- 11/18/11 11:35:13 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/classes/Session.php
r149 r159 9 9 { 10 10 public $title; 11 public $creator; 11 12 public $datetime; 12 13 public $pipeline; … … 18 19 * @param type $uid 19 20 * @param type $title 21 * @param type $creator 20 22 * @param type $datetime 21 23 * @param type $pipeline 22 24 */ 23 public function __construct($uid = null, $title = null, $ datetime = null, $pipeline = null, $answersets = null)25 public function __construct($uid = null, $title = null, $creator = null, $datetime = null, $pipeline = null, $answersets = null) 24 26 { 25 27 if(!isset($uid)) … … 29 31 $this->uid = $uid; 30 32 $this->title = $title; 33 $this->creator = $creator; 31 34 $this->datetime = $datetime; 32 35 $this->pipeline = $pipeline;
Note: See TracChangeset
for help on using the changeset viewer.