Changeset 1809299
- Timestamp:
- 01/25/2018 12:51:37 PM (8 years ago)
- Location:
- cyclos/trunk
- Files:
-
- 3 edited
-
cyclos-admin.php (modified) (2 diffs)
-
cyclos-public.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cyclos/trunk/cyclos-admin.php
r1361704 r1809299 276 276 <h2>Cyclos Plugin Settings</h2> 277 277 <hr> 278 <table> <? 278 <table> <?php 279 279 foreach (CyclosKey::getAll() as $k => $key) { ?> 280 280 <tr> … … 283 283 <td> <i>e.g. <?= $key->defaultValue ?></i></td> 284 284 </tr> 285 <? } ?>285 <?php } ?> 286 286 </table> 287 287 <hr/> -
cyclos/trunk/cyclos-public.php
r1253556 r1809299 30 30 31 31 // Create the widget to display the login form 32 add_action('widgets_init', create_function('', 'return register_widget("CyclosPlugin");'));32 add_action('widgets_init', function(){return register_widget("CyclosPlugin");}); 33 33 class CyclosPlugin extends WP_Widget { 34 34 … … 330 330 try { 331 331 $id = $captchaService->generate(); 332 $content = $captchaService->readImage($id, null );332 $content = $captchaService->readImage($id, null, null); 333 333 } catch (Cyclos\ConnectionException $e) { 334 334 $errorMessage = $t->errorConnection; -
cyclos/trunk/readme.txt
r1535025 r1809299 4 4 Donate link: http://www.cyclos.org/contributors 5 5 Requires at least: 4.3 6 Tested up to: 4. 3.17 Stable tag: 1.1. 46 Tested up to: 4.9.2 7 Stable tag: 1.1.5 8 8 License: GPLv2 9 9
Note: See TracChangeset
for help on using the changeset viewer.