Browse Source

bugfix: Zeige alle negativen Stimmen

Daniel Müllers 10 years ago
parent
commit
a8dff44a36
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/routes.php

+ 1 - 1
app/routes.php

@@ -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) {