Plugin Directory

Changeset 3339132


Ignore:
Timestamp:
08/04/2025 04:09:33 PM (8 months ago)
Author:
snexed
Message:

bug fix

Location:
ploxel
Files:
7 added
2 edited

Legend:

Unmodified
Added
Removed
  • ploxel/trunk/ploxel.php

    r3339102 r3339132  
    44Plugin URI: http://wordpress.org/plugins/ploxel/
    55Description: Sell tickets online your WordPress site with Ticketmeo, see https://www.ticketmeo.com/sell-tickets-on-wordpress for more information on how it works.
    6 Version: 2.6.0
     6Version: 2.6.1
    77Author: Ploxel
    88Author URI: http://www.ticketmeo.com/sell-tickets-on-wordpress
     
    1010*/
    1111
    12 define('PLOXEL_PLUGIN_VERSION', '2.6.0');
     12define('PLOXEL_PLUGIN_VERSION', '2.6.1');
    1313
    1414register_activation_hook(__FILE__, 'ploxel_activate');
     
    4343        return 'Sorry you have not set an url, please check your code again';
    4444    }
    45    
    46     if(isset($attrs['max-height'])) {
    47         if(!is_numeric($attrs['max_height'])) {
    48             return 'Max height must be an integer';
    49         }
    50     }
    5145
    5246    $url = parse_url($attrs['src']);
     
    6357   
    6458    if(isset($attrs['max-height'])) {
    65         $html .= '<div style="max-height: ' + esc_attr($attrs['max-height']) + 'px; overflow: auto;">';
     59        $html .= '<div style="max-height: ' + esc_attr($attrs['max-height']) + '; overflow: auto;">';
    6660    }
    6761   
  • ploxel/trunk/readme.txt

    r3339102 r3339132  
    44Requires at least: 2.8
    55Tested up to: 6.8
    6 Stable tag: 2.6.0
     6Stable tag: 2.6.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    116116== Changelog ==
    117117
     1182.6.1
     119
     120* Bug fix
     121
    1181222.6.0
    119123
Note: See TracChangeset for help on using the changeset viewer.