quasiman
Hello
It seems to be a PHP warning, you can open the associated file: E:\xampp\htdocs\joomla\templates\ja_purity_iv\html\com_content\author\author.php
Look for the line 52:
<span class="subheading-category"><?php echo $this->category->title; ?></span>
change it to:
<?php if (isset($this->category) && !empty($this->category->title)) : ?>
<span class="subheading-category"><?php echo htmlspecialchars($this->category->title, ENT_QUOTES, 'UTF-8'); ?></span>
<?php endif; ?>
And let me know how it goes.