Your ultimate PunBB resource!
You are not logged in.
## ## ## Mod title: Add a registration notification. ## ## Mod version: 1.0.0 ## Works on PunBB: 1.2.15 (should work with all 1.2.*) ## Release date: 5-8-2007 ## Author: GT (Hexify.com) ## ## Description: This little mod places a registration notification to all guest who visit the forum. ## ## Affected files: include/template/main.tpl ## ## ## Included Files: include/user/attention.php ## ## ## Affects DB: No ## ## ## DISCLAIMER: Please note that "mods" are not officially supported by ## PunBB. Installation of this modification is done at your ## own risk. Backup your forum database and any and all ## applicable files before proceeding. ##
Offline
This would be better, to be honest.
attention.php:
<?php
if($pun_user['is_guest'])
{
?>
<div class="block">
<h2><span><?php echo $lang_common['Info']; ?></span></h2>
<div class="box">
<div class="inbox">
<p><?php echo $lang_common['No permission']; ?></p>
</div>
</div>
</div>
<?php
}
?>Last edited by liquidat0r (2007-05-08 10:07:00)
Offline