bugfix: Zeige alle negativen Stimmen

This commit is contained in:
2013-09-27 14:47:47 +02:00
parent bf53fec69c
commit a8dff44a36

View File

@@ -57,7 +57,7 @@ Route::get('film/{id}', array('as' => 'film', function($id) {
$nv = "";
foreach($film->votes()->where('stimme', false)->get() as $v) {
$nv = $v->voter->name . "<br> ";
$nv .= $v->voter->name . "<br> ";
}
if(!is_null(Auth::user()) && $film->votes()->where('user', Auth::user()->id)->count() > 0) {