Changeset 3355
- Timestamp:
- 02/06/15 19:44:06 (8 years ago)
- Location:
- plugins/randomComment/trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/randomComment/trunk/_define.php
r3327 r3355 3 3 # This file is part of randomComment, a plugin for Dotclear. 4 4 # 5 # Copyright (c) 2009-2010 Tomtom 6 # http://blog.zenstyle.fr/ 5 # Copyright (c) 2009-2015 Tomtom and contributors 7 6 # 8 7 # Licensed under the GPL version 2.0 license. … … 16 15 /* Name */ 'randomComment', 17 16 /* Description */ 'Display random comments on your blog', 18 /* Author */ 'Tomtom (http://blog.zenstyle.fr/), Pierre Van Glabeke',19 /* Version */ '1. 1',17 /* Author */ 'Tomtom, Pierre Van Glabeke', 18 /* Version */ '1.2', 20 19 /* Properties */ 21 20 array( -
plugins/randomComment/trunk/_prepend.php
r3327 r3355 3 3 # This file is part of randomComment, a plugin for Dotclear. 4 4 # 5 # Copyright (c) 2009-2010 Tomtom 6 # http://blog.zenstyle.fr/ 5 # Copyright (c) 2009-2015 Tomtom and contributors 7 6 # 8 7 # Licensed under the GPL version 2.0 license. -
plugins/randomComment/trunk/_public.php
r3327 r3355 3 3 # This file is part of randomComment, a plugin for Dotclear. 4 4 # 5 # Copyright (c) 2009-2010 Tomtom 6 # http://blog.zenstyle.fr/ 5 # Copyright (c) 2009-2015 Tomtom and contributors 7 6 # 8 7 # Licensed under the GPL version 2.0 license. … … 10 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 10 # -- END LICENSE BLOCK ------------------------------------ 12 13 11 if (!defined('DC_RC_PATH')) { return; } 14 12 -
plugins/randomComment/trunk/_widgets.php
r3327 r3355 3 3 # This file is part of randomComment, a plugin for Dotclear. 4 4 # 5 # Copyright (c) 2009-2010 Tomtom 6 # http://blog.zenstyle.fr/ 5 # Copyright (c) 2009-2015 Tomtom and contributors 7 6 # 8 7 # Licensed under the GPL version 2.0 license. … … 10 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 10 # -- END LICENSE BLOCK ------------------------------------ 12 13 11 if (!defined('DC_RC_PATH')) { return; } 14 12 … … 40 38 $w->randomcomment->setting('offline',__('Offline'),0,'check'); 41 39 } 42 43 40 } -
plugins/randomComment/trunk/changelog
r3327 r3355 1 1.2 - 06-02-2015 - Pierre Van Glabeke 2 * modifs bloc licence + ajout code sécurité class 3 1 4 1.1 - 15/01/2015 - Pierre Van Glabeke 2 5 * ajout combo affichage + class + hors ligne dans widget -
plugins/randomComment/trunk/inc/_request.php
r3327 r3355 3 3 # This file is part of randomComment, a plugin for Dotclear. 4 4 # 5 # Copyright (c) 2009-2010 Tomtom 6 # http://blog.zenstyle.fr/ 5 # Copyright (c) 2009-2015 Tomtom and contributors 7 6 # 8 7 # Licensed under the GPL version 2.0 license. -
plugins/randomComment/trunk/inc/class.random.comment.php
r3327 r3355 3 3 # This file is part of randomComment, a plugin for Dotclear. 4 4 # 5 # Copyright (c) 2009-2010 Tomtom 6 # http://blog.zenstyle.fr/ 5 # Copyright (c) 2009-2015 Tomtom and contributors 7 6 # 8 7 # Licensed under the GPL version 2.0 license. … … 10 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 10 # -- END LICENSE BLOCK ------------------------------------ 11 if (!defined('DC_RC_PATH')) {return;} 12 12 13 13 class randomComment
Note: See TracChangeset
for help on using the changeset viewer.