Changeset 354
- Timestamp:
- 03/08/08 21:59:38 (16 years ago)
- Location:
- plugins/retrocontrol
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/retrocontrol/_define.php
r300 r354 3 3 * This is Rétrocontrôle, a plugin for Dotclear. * 4 4 * * 5 * Copyright (c) 2006-200 7*5 * Copyright (c) 2006-2008 * 6 6 * Oleksandr Syenchuk, Alain Vagner and contributors. * 7 7 * * … … 19 19 /* Description*/ "Trackback validity check", 20 20 /* Author */ "Alain Vagner, Oleksandr Syenchuk", 21 /* Version */ '2. 1.1',21 /* Version */ '2.2.1', 22 22 /* Permissions */ 'usage,contentadmin', 23 23 /* Priority */ 1001 -
plugins/retrocontrol/class.dc.filter.retrocontrol.php
r300 r354 3 3 * This is Rétrocontrôle, a plugin for Dotclear. * 4 4 * * 5 * Copyright (c) 2006-200 7*5 * Copyright (c) 2006-2008 * 6 6 * Oleksandr Syenchuk, Alain Vagner and contributors. * 7 7 * * … … 74 74 $this->rc_timeout = empty($_POST['rc_timeout']) ? $this->rc_timeout : abs((int) $_POST['rc_timeout']) * 60; 75 75 76 $core->blog->settings->put('rc_sourceCheck',$this->rc_sourceCheck,'boolean' ,'Check trackback source');77 $core->blog->settings->put('rc_timeoutCheck',$this->rc_timeoutCheck,'boolean' ,'Use disposable URL for trackbacks');78 $core->blog->settings->put('rc_recursive',$this->rc_recursive,'boolean' ,'Recursive filtering while checking source');79 $core->blog->settings->put('rc_timeout',$this->rc_timeout,'integer' ,'Trackback URL time life (in seconds)');76 $core->blog->settings->put('rc_sourceCheck',$this->rc_sourceCheck,'boolean'); 77 $core->blog->settings->put('rc_timeoutCheck',$this->rc_timeoutCheck,'boolean'); 78 $core->blog->settings->put('rc_recursive',$this->rc_recursive,'boolean'); 79 $core->blog->settings->put('rc_timeout',$this->rc_timeout,'integer'); 80 80 81 81 $core->blog->triggerBlog(); 82 83 82 return '<p class="message">'.__('Filter configuration updated')."</p>\n". 83 $this->showForm($url); 84 84 } 85 85 else {
Note: See TracChangeset
for help on using the changeset viewer.