Skip to content

Commit

Permalink
Update account.php
Browse files Browse the repository at this point in the history
Fixed Warning: Undefined array key
  • Loading branch information
Mayuresh-22 authored Jan 8, 2024
1 parent de10b12 commit f2c48d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions account.php
Original file line number Diff line number Diff line change
Expand Up @@ -377,15 +377,15 @@
</li>
<li style="vertical-align:baseline;">
<small>shared a post in the feed on </small>
<small>' . $postrow[3] . '</small>
<small>' . $postrow['dop'] . '</small>
</li>
</ul>
</div>
<div class="feed-post-display-box-message">
' . str_replace("\n", "<br>", $postrow[0]) . '
' . str_replace("\n", "<br>", $postrow['msg']) . '
</div>
<div class="feed-post-display-box-image">
<img src="uploads/' . $postrow[1] . '" alt="' . $postrow[1] . '" style="width: 100%; object-fit:contain; margin-bottom: 20px; border-radius: 5px">
<img src="uploads/' . $postrow['image'] . '" alt="' . $postrow['image'] . '" style="width: 100%; object-fit:contain; margin-bottom: 20px; border-radius: 5px">
</div>
</div>';
}
Expand Down

0 comments on commit f2c48d6

Please sign in to comment.