Changeset 3103
- Timestamp:
- 02/27/12 23:13:47 (11 years ago)
- Location:
- plugins/atReply
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/atReply/_define.php
r3093 r3103 35 35 /* Description*/ 'Easily reply to comments', 36 36 /* Author */ 'Moe (http://gniark.net/) append extension by buns.fr', 37 /* Version */ '1.7 ',37 /* Version */ '1.7.1', 38 38 /* Permissions */ 'usage,contentadmin' 39 39 ); -
plugins/atReply/_public.php
r3093 r3103 86 86 if ($GLOBALS['_ctx']->posts !== null) 87 87 { 88 $entry_url = $GLOBALS['_ctx']->posts->getURL(); 88 if (method_exists($GLOBALS['_ctx']->posts, 'getURL')) 89 { 90 $entry_url = $GLOBALS['_ctx']->posts->getURL(); 91 } 89 92 } 90 93
Note: See TracChangeset
for help on using the changeset viewer.