Plugin Directory

Changeset 667835


Ignore:
Timestamp:
02/14/2013 10:24:52 AM (13 years ago)
Author:
s_ruben
Message:

Updated to 1.2.1 version.

Location:
useful-banner-manager/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • useful-banner-manager/trunk/readme.txt

    r667495 r667835  
    4646== Changelog ==
    4747
     48= 1.2.1 =
     49* Fixed some bugs.
     50
    4851= 1.2 =
    4952* Now you can select all banners in the shortcodes without adding their ids.
  • useful-banner-manager/trunk/useful-banner-manager.php

    r667477 r667835  
    44Plugin URI: http://rubensargsyan.com/wordpress-plugin-useful-banner-manager/
    55Description: This banner manager plugin helps to manage the banners easily over the WordPress blog. It works with BuddyPress too. <a href="admin.php?page=useful-banner-manager/useful-banner-manager-banners.php">Banner Manager</a>
    6 Version: 1.2
     6Version: 1.2.1
    77Author: Ruben Sargsyan
    88Author URI: http://rubensargsyan.com/
     
    3737    $useful_banner_manager_table_name = $wpdb->prefix . 'useful_banner_manager_banners';
    3838    $useful_banner_manager_plugin_prefix = 'useful_banner_manager_';
    39     $useful_banner_manager_version = '1.2';
     39    $useful_banner_manager_version = '1.2.1';
    4040
    4141    $charset_collate = '';
     
    8888
    8989    if( ! file_exists( ABSPATH . 'wp-content/uploads ' ) ) {
    90         mkdir( ABSPATH . 'wp-content/uploads' );
     90        @mkdir( ABSPATH . 'wp-content/uploads' );
    9191    }
    9292
    9393    if ( ! file_exists( ABSPATH . 'wp-content/uploads/useful_banner_manager_banners' ) ) {
    94         mkdir( ABSPATH . 'wp-content/uploads/useful_banner_manager_banners' );
     94        @mkdir( ABSPATH . 'wp-content/uploads/useful_banner_manager_banners' );
    9595    }
    9696}
Note: See TracChangeset for help on using the changeset viewer.