Update of /cvsroot/logicampus/logicampus/src/logicreate/lib
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv11668/lib
Modified Files:
lc_class.php
Log Message:
syntax errors
Index: lc_class.php
===================================================================
RCS file: /cvsroot/logicampus/logicampus/src/logicreate/lib/lc_class.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** lc_class.php 2 Oct 2007 18:16:18 -0000 1.13
--- lc_class.php 2 Mar 2008 22:43:36 -0000 1.14
***************
*** 3,7 ****
include_once(LIB_PATH.'PBDO/Classes.php');
include_once(LIB_PATH.'semesterObj.php');
! include_once(LIB_PATH.'lc_lesson.php');
class lcClass {
--- 3,7 ----
include_once(LIB_PATH.'PBDO/Classes.php');
include_once(LIB_PATH.'semesterObj.php');
! include_once(LIB_PATH.'lesson/lc_lesson.php');
class lcClass {
***************
*** 34,43 ****
/**
! * Load a LC_Lesson object
*
* @return boolean true if the class was loaded with no problems
*/
function loadLesson($lessonId) {
! $this->lessons[$lessonId] = new LC_Lesson($lessonId);
if ($this->lessons[$lessonId]->lessonDo->idClasses != $this->classId) {
unset($this->lessons[$lessonId]);
--- 34,43 ----
/**
! * Load a Lc_Lesson object
*
* @return boolean true if the class was loaded with no problems
*/
function loadLesson($lessonId) {
! $this->lessons[$lessonId] = new Lc_Lesson($lessonId);
if ($this->lessons[$lessonId]->lessonDo->idClasses != $this->classId) {
unset($this->lessons[$lessonId]);
|