summaryrefslogtreecommitdiff
path: root/inc/html.php
diff options
context:
space:
mode:
authorChristopher Smith <chris@jalakai.co.uk>2013-04-07 19:40:27 +0100
committerChristopher Smith <chris@jalakai.co.uk>2013-04-07 19:40:27 +0100
commitf755f9abc6fe099a6bee2bdd4acda44baca5ea7a (patch)
treeb5334c51c0cd34d262b2708e663b2d39e05ad081 /inc/html.php
parent64cafb1fc08f57bf3d9960139f3fa30034432be9 (diff)
downloadrpg-f755f9abc6fe099a6bee2bdd4acda44baca5ea7a.tar.gz
rpg-f755f9abc6fe099a6bee2bdd4acda44baca5ea7a.tar.bz2
change nomenclature from 'show' to 'allow' (fn from canshow to allowed)
Diffstat (limited to 'inc/html.php')
-rw-r--r--inc/html.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/html.php b/inc/html.php
index 09d1387bd..fb39fcb3c 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -1297,7 +1297,7 @@ function html_msgarea(){
foreach($MSG as $msg){
$hash = md5($msg['msg']);
if(isset($shown[$hash])) continue; // skip double messages
- if(info_msg_canshow($msg)){
+ if(info_msg_allowed($msg)){
print '<div class="'.$msg['lvl'].'">';
print $msg['msg'];
print '</div>';