diff options
| author | Patrick Seeger <pseeger@ccwn.org> | 2014-06-18 23:55:12 +0200 |
|---|---|---|
| committer | Patrick Seeger <pseeger@ccwn.org> | 2014-06-18 23:55:12 +0200 |
| commit | b363e50d5500044499ba08208433fd8b736b5430 (patch) | |
| tree | cf36a2f174b94cff0085659094e4aea19f17b4f7 /protected/controllers/VeranstaltungController.php | |
| parent | 5a44c2c532f6375972bc5686b541e860b24590f9 (diff) | |
Programmpunkt pro Bühne eingebaut
Diffstat (limited to '')
| -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(), )); } |
