Changeset 697 for trunk/app/controllers
- Timestamp:
- 08/06/08 00:08:53 (4 months ago)
- Location:
- trunk/app/controllers
- Files:
-
- 2 modified
-
ecourses_controller.php (modified) (1 diff)
-
lessons_controller.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/controllers/ecourses_controller.php
r696 r697 1 ?php1 <?php 2 2 /** 3 3 * Karamelo e-Learning Platform -
trunk/app/controllers/lessons_controller.php
r696 r697 147 147 } 148 148 149 public function admin_delete($ id)149 public function admin_delete($lesson_id) 150 150 { 151 if ($this->Lesson->del($ id)):151 if ($this->Lesson->del($lesson_id)): 152 152 $this->msgFlash(__('Data deleted', true), '/admin/lessons/listing'); 153 153 endif; 154 } 154 155 } 155 156 ?>
