handle deleted users (null author)
This commit is contained in:
parent
dc9465495a
commit
ececccc3a0
@ -35,7 +35,14 @@ $O_recipe = $A_view["RECIPE"];
|
|||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<p>By <?= $O_recipe->getAuthor()->S_USERNAME ?></p>
|
<?php
|
||||||
|
$O_author = $O_recipe->getAuthor();
|
||||||
|
if($O_author === null) {
|
||||||
|
echo '<p>By an anonymous user</p>';
|
||||||
|
} else {
|
||||||
|
echo '<p>By '.$O_author->S_USERNAME.' </p>';
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
View::show("appreciations/view_all", $A_view)
|
View::show("appreciations/view_all", $A_view)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user