Explorar o código

bugfix: Zeige alle negativen Stimmen

Daniel Müllers %!s(int64=11) %!d(string=hai) anos
pai
achega
a8dff44a36
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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) {