Plugin Directory

Changeset 1169616


Ignore:
Timestamp:
05/28/2015 07:52:45 PM (11 years ago)
Author:
mainehost
Message:

Updating to 1.3.3

Location:
seo-enforcer
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • seo-enforcer/tags/1.3.3/readme.txt

    r1169565 r1169616  
    44Requires at least: 3.9
    55Tested up to: 4.2.2
    6 Stable tag: 1.3.2
     6Stable tag: 1.3.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3737
    3838== Changelog ==
     39
     40= 1.3.3 =
     41
     42Sorry 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.
    3948
    4049= 1.3.2 =
     
    171180== Upgrade Notice ==
    172181
     182= 1.3.3 =
     183
     184More bug fixes.
     185
    173186= 1.3.2 =
    174187
  • seo-enforcer/tags/1.3.3/seoe.php

    r1169565 r1169616  
    77    Author: Maine Hosting Solutions
    88    Author URI: http://mainehost.com/
    9     Version: 1.3.2
     9    Version: 1.3.3
    1010*/
    1111
     
    252252
    253253                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) {
    257257                    $new_meta = (!$new_meta) ? $value : $new_meta . ' ' . $value;
    258258                }
    259259                else {
    260260                    $new_meta = trim($new_meta);
    261                     $new_meta .= '...';
     261                    if($type == 2) $new_meta .= '...';
    262262                    break;
    263263                }
  • seo-enforcer/trunk/readme.txt

    r1169565 r1169616  
    44Requires at least: 3.9
    55Tested up to: 4.2.2
    6 Stable tag: 1.3.2
     6Stable tag: 1.3.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3737
    3838== Changelog ==
     39
     40= 1.3.3 =
     41
     42Sorry 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.
    3948
    4049= 1.3.2 =
     
    171180== Upgrade Notice ==
    172181
     182= 1.3.3 =
     183
     184More bug fixes.
     185
    173186= 1.3.2 =
    174187
  • seo-enforcer/trunk/seoe.php

    r1169565 r1169616  
    77    Author: Maine Hosting Solutions
    88    Author URI: http://mainehost.com/
    9     Version: 1.3.2
     9    Version: 1.3.3
    1010*/
    1111
     
    252252
    253253                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) {
    257257                    $new_meta = (!$new_meta) ? $value : $new_meta . ' ' . $value;
    258258                }
    259259                else {
    260260                    $new_meta = trim($new_meta);
    261                     $new_meta .= '...';
     261                    if($type == 2) $new_meta .= '...';
    262262                    break;
    263263                }
Note: See TracChangeset for help on using the changeset viewer.