瀏覽代碼

Fix kommentare

Daniel Müllers 11 年之前
父節點
當前提交
bf53fec69c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/routes.php

+ 1 - 1
app/routes.php

@@ -111,7 +111,7 @@ Route::post('comment', array('as' => 'comment', function() {
 	$c->film = Input::get('film');
 	$c->user = Input::get('user');
 	$c->text = Input::get('text');
-	$c->bewertung = Input::get('rate');
+	$c->bewertung = !is_null(Input::get('rate')) ? Input::get('rate') : 0;
 	$c->save();
 	return Redirect::to('film/' . Input::get('film'));
 }));