diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/editbookmark.tpl.php | 2 | ||||
-rw-r--r-- | templates/top.inc.php | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/templates/editbookmark.tpl.php b/templates/editbookmark.tpl.php index 5a24cf4..8a08717 100644 --- a/templates/editbookmark.tpl.php +++ b/templates/editbookmark.tpl.php @@ -62,7 +62,7 @@ $this->includeTemplate("dojo.inc"); <tr id="privateNoteZone" <?php if(strlen($row['bPrivateNote'])==0):?>style="display:none"<?php endif; ?>> <th align="left"><?php echo T_('Private Note'); ?></th> <td><textarea name="privateNote" id="privateNote" rows="1" cols="63" ><?php echo filter($row['bPrivateNote'], 'xml'); ?></textarea></td> - <td>← <?php echo T_('Just visible by you and your friends.'); ?> + <td>← <?php echo T_('Just visible by you and your contacts.'); ?> </td> </tr> <tr> diff --git a/templates/top.inc.php b/templates/top.inc.php index 0770c9c..4ff43f2 100644 --- a/templates/top.inc.php +++ b/templates/top.inc.php @@ -47,6 +47,9 @@ if(!isset($_GET['popup'])) { if (isset($subtitle)) { echo '<h2>'. $subtitle ."</h2>\n"; } +if(DEBUG_MODE) { + echo '<p class="error">'. T_('Admins, your installation is in "Debug Mode" ($debugMode = true). To go in "Normal Mode" and hide debugging messages, change $debugMode to false into config.inc.php.') ."</p>\n"; +} if (isset($error) && $error!='') { echo '<p class="error">'. $error ."</p>\n"; } |