Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
Kgneo committed Apr 16, 2018
1 parent 2963a77 commit 8fcedd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/comment/commentPodSimple.php
Expand Up @@ -161,7 +161,7 @@ function showCommentTree($comments, $assetsUrl, $idComment, $canComment, $level,
if(@$comment["argval"] == "down") $classArgument = "bg-red-comment";
if(@$comment["argval"] == "") $classArgument = "bg-white-comment";
//var_dump($comment["author"]);
$slug = Slug::getByTypeAndId(Person::COLLECTION, "$comment["author"]["id"]");
$slug = Slug::getByTypeAndId(Person::COLLECTION, $comment["author"]["id"]);
if(@$slug == null){
$slug = "page.type.".Person::COLLECTION.".id.".$comment["author"]["id"];
}else{ $slug = "@".$slug["name"]; }
Expand Down

0 comments on commit 8fcedd5

Please sign in to comment.