diff options
Diffstat (limited to 'protected/controllers/VeranstaltungController.php')
| -rw-r--r-- | protected/controllers/VeranstaltungController.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protected/controllers/VeranstaltungController.php b/protected/controllers/VeranstaltungController.php index 6333702..d047f1d 100644 --- a/protected/controllers/VeranstaltungController.php +++ b/protected/controllers/VeranstaltungController.php @@ -84,12 +84,16 @@ class VeranstaltungController extends Controller */ public function actionStage($id) { + $buehnen = new Standort(); + $buehnen->type="Bühne"; + $model = Standort::model()->findByPk($id); if($model===null) throw new CHttpException(404,'The requested page does not exist.'); $this->render('stage',array( 'model'=>$model, + //'buehnen'=>$buehnen->search(), )); } |
