Changeset 148 for Dev/branches/jos-branch/classes/Survey.php
- Timestamp:
- 11/07/11 16:54:41 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/branches/jos-branch/classes/Survey.php
r138 r148 12 12 public $questions; 13 13 14 public function __construct($uid = null, $title = null, $description = null, $ questions = null) {14 public function __construct($uid = null, $title = null, $description = null, $creator = null, $questions = null) { 15 15 if(!isset($uid)) 16 16 { … … 19 19 $this->uid = $uid; 20 20 $this->title = $title; 21 $this->description = $description; 21 $this->description = $description; 22 $this->creator = $creator; 22 23 $this->questions = $questions; 23 24 }
Note: See TracChangeset
for help on using the changeset viewer.