Changeset 1608
- Timestamp:
- 10/20/09 23:21:36 (13 years ago)
- Location:
- plugins
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/atReply/index.php
r1607 r1608 48 48 'string','Display a switch to toggle threading'); 49 49 50 # inspir ated fromlightbox/admin.php50 # inspired by lightbox/admin.php 51 51 $settings->setNameSpace('system'); 52 52 … … 59 59 # create the image 60 60 61 # inspir ated fromblowupConfig/lib/class.blowup.config.php61 # inspired by blowupConfig/lib/class.blowup.config.php 62 62 $color = sscanf($color,'#%2X%2X%2X'); 63 63 -
plugins/cleanConfig/class.cleanconfig.php
r1607 r1608 35 35 elseif ($limit == 'global') 36 36 { 37 # inspir ated fromdrop() function in /dotclear/inc/core/class.dc.settings.php37 # inspired by drop() function in /dotclear/inc/core/class.dc.settings.php 38 38 $strReq = 'DELETE FROM '.$core->prefix.'setting'.' '; 39 39 $strReq .= 'WHERE blog_id IS NULL '; … … 198 198 global $core; 199 199 200 # inspir ated fromdrop() function in /dotclear/inc/core/class.dc.settings.php200 # inspired by drop() function in /dotclear/inc/core/class.dc.settings.php 201 201 $strReq = 'DELETE FROM '.$core->prefix.'version '; 202 202 $strReq .= 'WHERE module = \''.$core->con->escape($module).'\';'; -
plugins/contribute/_admin.php
r950 r1608 141 141 # display a link to the site 142 142 # prevent malformed URLs 143 # inspir ated by /dotclear/inc/clearbricks/net.http/class.net.http.php143 # inspired by /dotclear/inc/clearbricks/net.http/class.net.http.php 144 144 if (!empty($site)) 145 145 { -
plugins/contribute/_prepend.php
r1576 r1608 29 29 dirname(__FILE__).'/inc/lib.antispam.contribute.php'; 30 30 31 # inspir ated by contactMe/_public.php31 # inspired by contactMe/_public.php 32 32 $core->url->register('contribute','contribute', 33 33 '^contribute(?:/(.+))?$',array('contributeDocument','page')); -
plugins/contribute/_public.php
r1595 r1608 124 124 $site = ''; 125 125 126 # inspir ated by contactMe/_public.php126 # inspired by contactMe/_public.php 127 127 if ($args == 'sent') 128 128 { … … 417 417 $post_meta['contribute_mail'][] = $mail = $_POST['c_mail']; 418 418 } 419 # inspir ated fromdcBlog > getCommentCursor()419 # inspired by dcBlog > getCommentCursor() 420 420 if (isset($_POST['c_site']) && (!empty($_POST['c_site']))) 421 421 { … … 426 426 $site = 'http://'.$site; 427 427 } 428 # /inspir ated fromdcBlog > getCommentCursor()428 # /inspired by dcBlog > getCommentCursor() 429 429 430 430 $post_meta['contribute_site'][] = $site; … … 559 559 if ($meta !== false) 560 560 { 561 # inspir ated by planet/insert_feeds.php561 # inspired by planet/insert_feeds.php 562 562 if (!empty($name)) 563 563 { -
plugins/contribute/index.php
r1594 r1608 91 91 $settings->put('contribute_mymeta_values',$mymeta_values,'string', 92 92 'Active My Meta values'); 93 # inspir ated by lightbox/admin.php93 # inspired by lightbox/admin.php 94 94 $settings->setNameSpace('system'); 95 95 -
plugins/popularityContest/inc/lib.popularityContest.php
r1574 r1608 85 85 $url = self::$send_url; 86 86 87 # inspir ated from/dotclear/inc/core/class.dc.trackback.php87 # inspired by /dotclear/inc/core/class.dc.trackback.php 88 88 $client = netHttp::initClient($url,$path); 89 89 $client->setUserAgent('Dotclear - http://www.dotclear.net/'); … … 134 134 $plugins_popularity = array(); 135 135 136 # inspir ated fromdaInstaller/inc/class.da.modules.parser.php136 # inspired by daInstaller/inc/class.da.modules.parser.php 137 137 foreach ($plugins_XML->plugin as $p) 138 138 { -
plugins/subscribeToComments/_public.php
r1524 r1608 179 179 180 180 # message 181 # inspir ated by contactMe/_public.php181 # inspired by contactMe/_public.php 182 182 switch($args) 183 183 { -
plugins/widgetExternalSearch/_prepend.php
r1212 r1608 22 22 if (!defined('DC_RC_PATH')) {return;} 23 23 24 # inspir ated by contactMe/_public.php24 # inspired by contactMe/_public.php 25 25 $core->url->register('externalSearch','externalSearch', 26 26 '^externalSearch$',array('externalSearchDocument','page'));
Note: See TracChangeset
for help on using the changeset viewer.