Plugin Directory

Changeset 1024640 for dukapress


Ignore:
Timestamp:
11/12/2014 07:17:01 PM (10 years ago)
Author:
rixeo
Message:

Tagging version 2.5.4

Location:
dukapress
Files:
3 edited
7 copied

Legend:

Unmodified
Added
Removed
  • dukapress/tags/2.5.4/dukapress.php

    r1024104 r1024640  
    33Plugin Name: DukaPress Shopping Cart
    44Description: DukaPress Shopping Cart
    5 Version: 2.5.3
     5Version: 2.5.4
    66Author: Rixeo and Nickel Pro
    77Author URI: http://dukapress.org/
     
    99*/
    1010
    11 $dp_version = 2.53;
     11$dp_version = 2.54;
    1212
    1313session_start();
  • dukapress/tags/2.5.4/php/dp-functions.php

    r1024104 r1024640  
    66 */
    77if(!function_exists('dp_img_resize')){
    8     function dp_img_resize($attach_id = null, $img_url = null, $width, $height, $crop = true){
     8    function dp_img_resize($attach_id = null, $img_url = null, $width = false, $height = false, $crop = true){
    99        if($width && $height){
    1010            if($attach_id){
     
    108108            }
    109109        }else{
    110             return $img_url;
     110            return false;
    111111        }
    112112       
  • dukapress/tags/2.5.4/readme.txt

    r1024104 r1024640  
    66Requires at least: 3.0
    77Tested up to: 4.0
    8 Stable tag: 2.5.3
     8Stable tag: 2.5.4
    99
    1010DukaPress is an open source e-commerce solution built for Wordpress.
     
    112112== Changelog ==
    113113
     114= 2.5.4 =
     115* Image resizer security fix.
     116
    114117= 2.5.3 =
    115118* Security fix on image resize function.
  • dukapress/trunk/dukapress.php

    r1024104 r1024640  
    33Plugin Name: DukaPress Shopping Cart
    44Description: DukaPress Shopping Cart
    5 Version: 2.5.3
     5Version: 2.5.4
    66Author: Rixeo and Nickel Pro
    77Author URI: http://dukapress.org/
     
    99*/
    1010
    11 $dp_version = 2.53;
     11$dp_version = 2.54;
    1212
    1313session_start();
  • dukapress/trunk/php/dp-functions.php

    r1024104 r1024640  
    66 */
    77if(!function_exists('dp_img_resize')){
    8     function dp_img_resize($attach_id = null, $img_url = null, $width, $height, $crop = true){
     8    function dp_img_resize($attach_id = null, $img_url = null, $width = false, $height = false, $crop = true){
    99        if($width && $height){
    1010            if($attach_id){
     
    108108            }
    109109        }else{
    110             return $img_url;
     110            return false;
    111111        }
    112112       
  • dukapress/trunk/readme.txt

    r1024104 r1024640  
    66Requires at least: 3.0
    77Tested up to: 4.0
    8 Stable tag: 2.5.3
     8Stable tag: 2.5.4
    99
    1010DukaPress is an open source e-commerce solution built for Wordpress.
     
    112112== Changelog ==
    113113
     114= 2.5.4 =
     115* Image resizer security fix.
     116
    114117= 2.5.3 =
    115118* Security fix on image resize function.
Note: See TracChangeset for help on using the changeset viewer.