Changeset 974244
- Timestamp:
- 08/27/2014 08:26:15 PM (12 years ago)
- Location:
- wolfnet-idx-for-wordpress/trunk
- Files:
-
- 3 edited
-
ReadMe.txt (modified) (2 diffs)
-
humans.txt (modified) (1 diff)
-
template/adminSettings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wolfnet-idx-for-wordpress/trunk/ReadMe.txt
r972601 r974244 5 5 Requires at least: 3.5.1 6 6 Tested up to: 3.9 7 Stable tag: 1.6. 07 Stable tag: 1.6.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 52 52 == Changelog == 53 53 54 = 1.6 = 54 = 1.6.1 = 55 * Fixed key entry bug 56 57 = 1.6.0 = 55 58 * Code refactoring 56 59 * minor bug fixes -
wolfnet-idx-for-wordpress/trunk/humans.txt
r972601 r974244 16 16 Website: tompenney.com 17 17 Twitter: @tompenney 18 Location: Oakdale, MN, USA18 Location: Minneapolis, MN, USA 19 19 20 20 -
wolfnet-idx-for-wordpress/trunk/template/adminSettings.php
r972601 r974244 43 43 <td> 44 44 <table class="key-table" id="wolfnet_keys"> 45 <?php for($i=1; $i<=count($productKey); $i++): ?> 45 <?php 46 $numrows = count($productKey); 47 // we need to show at least one row of form fields so they can add a key if there are none 48 if ($numrows < 1 ) $numrows = 1; 49 for($i=1; $i<=$numrows; $i++): 50 ?> 46 51 <tr class="row<?php echo $i; ?>"> 47 52 <th scope="row"><label for="wolfnet_productKey_<?php echo $i; ?>">Product Key</label></th>
Note: See TracChangeset
for help on using the changeset viewer.