Changeset 1169616
- Timestamp:
- 05/28/2015 07:52:45 PM (11 years ago)
- Location:
- seo-enforcer
- Files:
-
- 2 edited
- 3 copied
-
tags/1.3.3 (copied) (copied from seo-enforcer/trunk)
-
tags/1.3.3/readme.txt (copied) (copied from seo-enforcer/trunk/readme.txt) (3 diffs)
-
tags/1.3.3/seoe.php (copied) (copied from seo-enforcer/trunk/seoe.php) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/seoe.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
seo-enforcer/tags/1.3.3/readme.txt
r1169565 r1169616 4 4 Requires at least: 3.9 5 5 Tested up to: 4.2.2 6 Stable tag: 1.3. 26 Stable tag: 1.3.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 37 37 38 38 == Changelog == 39 40 = 1.3.3 = 41 42 Sorry for so many updates lately. Every time I think I've fixed a bug I create another. The life of a programmer. 43 44 * **Bug Fixes** 45 46 * Corrected an issue where title length checks weren't working correctly. 47 * Title and descriptions will now only append the ... if it's the selected truncation method. 39 48 40 49 = 1.3.2 = … … 171 180 == Upgrade Notice == 172 181 182 = 1.3.3 = 183 184 More bug fixes. 185 173 186 = 1.3.2 = 174 187 -
seo-enforcer/tags/1.3.3/seoe.php
r1169565 r1169616 7 7 Author: Maine Hosting Solutions 8 8 Author URI: http://mainehost.com/ 9 Version: 1.3. 29 Version: 1.3.3 10 10 */ 11 11 … … 252 252 253 253 if(!$test_meta) $test_meta = $value; 254 else $test_meta .= ' ' . $value . ($key < $last_key && $type == 2) ? '...' : '';255 256 if(strlen($test_meta ) <= $length) {254 else $test_meta .= ' ' . $value; 255 256 if(strlen($test_meta . (($key < $last_key && $type == 2) ? '...' : '')) <= $length) { 257 257 $new_meta = (!$new_meta) ? $value : $new_meta . ' ' . $value; 258 258 } 259 259 else { 260 260 $new_meta = trim($new_meta); 261 $new_meta .= '...';261 if($type == 2) $new_meta .= '...'; 262 262 break; 263 263 } -
seo-enforcer/trunk/readme.txt
r1169565 r1169616 4 4 Requires at least: 3.9 5 5 Tested up to: 4.2.2 6 Stable tag: 1.3. 26 Stable tag: 1.3.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 37 37 38 38 == Changelog == 39 40 = 1.3.3 = 41 42 Sorry for so many updates lately. Every time I think I've fixed a bug I create another. The life of a programmer. 43 44 * **Bug Fixes** 45 46 * Corrected an issue where title length checks weren't working correctly. 47 * Title and descriptions will now only append the ... if it's the selected truncation method. 39 48 40 49 = 1.3.2 = … … 171 180 == Upgrade Notice == 172 181 182 = 1.3.3 = 183 184 More bug fixes. 185 173 186 = 1.3.2 = 174 187 -
seo-enforcer/trunk/seoe.php
r1169565 r1169616 7 7 Author: Maine Hosting Solutions 8 8 Author URI: http://mainehost.com/ 9 Version: 1.3. 29 Version: 1.3.3 10 10 */ 11 11 … … 252 252 253 253 if(!$test_meta) $test_meta = $value; 254 else $test_meta .= ' ' . $value . ($key < $last_key && $type == 2) ? '...' : '';255 256 if(strlen($test_meta ) <= $length) {254 else $test_meta .= ' ' . $value; 255 256 if(strlen($test_meta . (($key < $last_key && $type == 2) ? '...' : '')) <= $length) { 257 257 $new_meta = (!$new_meta) ? $value : $new_meta . ' ' . $value; 258 258 } 259 259 else { 260 260 $new_meta = trim($new_meta); 261 $new_meta .= '...';261 if($type == 2) $new_meta .= '...'; 262 262 break; 263 263 }
Note: See TracChangeset
for help on using the changeset viewer.