Changeset 2908
- Timestamp:
- 01/23/11 20:09:53 (13 years ago)
- Location:
- plugins/atReply
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/atReply/_admin.php
r2746 r2908 32 32 $core->addBehavior('adminAfterCommentDesc', 33 33 array('AtReplyAdmin','adminAfterCommentDesc')); 34 34 35 $core->addBehavior('adminBeforeCommentCreate', 35 36 array('AtReplyAdmin','adminBeforeCommentCreate')); -
plugins/atReply/_define.php
r2746 r2908 32 32 /* Description*/ 'Easily reply to comments', 33 33 /* Author */ 'Moe (http://gniark.net/) append extension by buns.fr', 34 /* Version */ '1.6 ',35 /* Permissions */ ' admin'34 /* Version */ '1.6.1', 35 /* Permissions */ 'usage,contentadmin' 36 36 ); 37 37 ?> -
plugins/atReply/index.php
r2746 r2908 27 27 28 28 if (!defined('DC_CONTEXT_ADMIN')) {return;} 29 30 if (!$core->auth->check('admin',$core->blog->id)) 31 { 32 echo('<html><head><title>Error</title></head>'. 33 '<body><p class="error">'. 34 __('Invalid permission.'). 35 '</p></body></html>'); 36 return; 37 } 29 38 30 39 $settings =& $core->blog->settings;
Note: See TracChangeset
for help on using the changeset viewer.