Changeset 1266 for branches/1.2/content/plugins
- Timestamp:
- 03/01/10 06:22:26 (3 years ago)
- Location:
- branches/1.2/content/plugins/messaging
- Files:
-
- 4 edited
-
messaging.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
templates/messaging_inbox.php (modified) (1 diff)
-
templates/messaging_outbox.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/content/plugins/messaging/messaging.php
r1264 r1266 3 3 * name: Messaging 4 4 * description: Enable users to send private messages to each other 5 * version: 0. 35 * version: 0.4 6 6 * folder: messaging 7 7 * class: Messaging -
branches/1.2/content/plugins/messaging/readme.txt
r1264 r1266 25 25 Changelog 26 26 --------- 27 v.0.4 2010/03/01 - Nick - Fix for empty inbox and outbox 27 28 v.0.3 2010/03/01 - williamd - Fix for unauthorized viewing of messages 28 29 v.0.2 2010/03/01 - Nick - Bug fixes -
branches/1.2/content/plugins/messaging/templates/messaging_inbox.php
r1258 r1266 42 42 </tr> 43 43 44 <?php if (isset($h->vars['messages_list']-> list)) { ?>44 <?php if (isset($h->vars['messages_list']->items)) { ?> 45 45 46 46 <?php foreach ($h->vars['messages_list']->items as $msg) { ?> -
branches/1.2/content/plugins/messaging/templates/messaging_outbox.php
r1258 r1266 24 24 * @link http://www.hotarucms.org/ 25 25 */ 26 26 27 27 ?> 28 28 … … 42 42 </tr> 43 43 44 <?php if (isset($h->vars['messages_list']-> list)) { ?>44 <?php if (isset($h->vars['messages_list']->items)) { ?> 45 45 46 46 <?php foreach ($h->vars['messages_list']->items as $msg) { ?>
Note: See TracChangeset
for help on using the changeset viewer.