Changeset 667835
- Timestamp:
- 02/14/2013 10:24:52 AM (13 years ago)
- Location:
- useful-banner-manager/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
useful-banner-manager.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
useful-banner-manager/trunk/readme.txt
r667495 r667835 46 46 == Changelog == 47 47 48 = 1.2.1 = 49 * Fixed some bugs. 50 48 51 = 1.2 = 49 52 * Now you can select all banners in the shortcodes without adding their ids. -
useful-banner-manager/trunk/useful-banner-manager.php
r667477 r667835 4 4 Plugin URI: http://rubensargsyan.com/wordpress-plugin-useful-banner-manager/ 5 5 Description: 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 6 Version: 1.2.1 7 7 Author: Ruben Sargsyan 8 8 Author URI: http://rubensargsyan.com/ … … 37 37 $useful_banner_manager_table_name = $wpdb->prefix . 'useful_banner_manager_banners'; 38 38 $useful_banner_manager_plugin_prefix = 'useful_banner_manager_'; 39 $useful_banner_manager_version = '1.2 ';39 $useful_banner_manager_version = '1.2.1'; 40 40 41 41 $charset_collate = ''; … … 88 88 89 89 if( ! file_exists( ABSPATH . 'wp-content/uploads ' ) ) { 90 mkdir( ABSPATH . 'wp-content/uploads' );90 @mkdir( ABSPATH . 'wp-content/uploads' ); 91 91 } 92 92 93 93 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' ); 95 95 } 96 96 }
Note: See TracChangeset
for help on using the changeset viewer.