Skip to content

Commit

Permalink
convert null value to string (fixes php 8.x deprecation warning)
Browse files Browse the repository at this point in the history
  • Loading branch information
tenzap committed Dec 24, 2024
1 parent 1b1490c commit 4eff719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/views/main/phonebook/contact/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

<div id="window_container">
<div id="window_title">
<div id="window_title_left"><?php echo htmlentities($title, ENT_QUOTES); ?></div>
<div id="window_title_left"><?php echo htmlentities(strval($title), ENT_QUOTES); ?></div>
<div id="window_title_right">
<a href="javascript:void(0);" id="sendallcontact" class="nicebutton">&#43; <?php echo tr('Send to all contacts'); ?></a>
<a href="javascript:void(0);" id="addpbkcontact_wizard" class="nicebutton">&#43; <?php echo tr('Add contact'); ?></a>
Expand Down

0 comments on commit 4eff719

Please sign in to comment.