Changeset 1337
- Timestamp:
- 07/14/09 14:47:24 (14 years ago)
- Location:
- plugins/atReply
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/atReply/_define.php
r1328 r1337 30 30 /* Description*/ 'Easily reply to comments', 31 31 /* Author */ 'Moe (http://gniark.net/) append extension by buns.fr', 32 /* Version */ '1.4-beta 1',32 /* Version */ '1.4-beta2', 33 33 /* Permissions */ 'admin' 34 34 ); -
plugins/atReply/index.php
r1328 r1337 143 143 $personalized_image = $core->blog->settings->public_url. 144 144 '/atReply/reply.png'; 145 145 146 if (file_exists(path::fullFromRoot($settings->public_path, 146 147 DC_ROOT).'/atReply/reply.png')) … … 151 152 { 152 153 # public_path is located at the root of the website 153 $parsed_url = @parse_url($core->blog->url); 154 155 $image_url = $parsed_url['scheme'].'://'.$parsed_url['host']. 156 $personalized_image; 157 158 unset($parsed_url); 154 $image_url = $core->blog->host.'/'.$personalized_image; 159 155 } else { 160 156 $image_url = $core->blog->url.$personalized_image;
Note: See TracChangeset
for help on using the changeset viewer.