Dis bzw.Liket man in der Galerie einen Kommentar,so wird statt der Website nur noch ein Code angezeigt:

verwendete ilch Version: 2.1.x
Hier kann eine Notiz zum Merk-Eintrag hinzugefügt werden (optional)
Geschlossen |
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 | public function saveVote( $id , $userId , $upVote ) { $commentMapper = new CommentMapper(); $oldComment = $commentMapper ->getCommentById( $id ); $commentModel = new CommentModel(); $commentModel ->setId( $id ); if ( $upVote ) { $commentModel ->setUp( $oldComment ->getUp()+1); } else { $commentModel ->setDown( $oldComment ->getDown()+1); } $commentModel ->setVoted( $oldComment ->getVoted(). $userId . ',' ); $commentMapper ->saveLike( $commentModel ); } |
Geschlossen | ||
![]() |
Zurück zu Fehlersuche und Probleme |