Changeset 1303187
- Timestamp:
- 12/08/2015 07:06:39 PM (9 years ago)
- Location:
- wp-advertize-it
- Files:
-
- 1 added
- 4 edited
- 19 copied
Legend:
- Unmodified
- Added
- Removed
-
wp-advertize-it/tags/1.0.5/bootstrap.php
r1303169 r1303187 4 4 Plugin URI: https://wordpress.org/plugins/wp-advertize-it/ 5 5 Description: A plugin to place adsense blocks on your site 6 Version: 1.0. 46 Version: 1.0.5 7 7 Author: Henri Benoit, Alexander Herdt, amazingweb.de 8 8 Author URI: http://benohead.com -
wp-advertize-it/tags/1.0.5/classes/wp-advertize-it.php
r1303169 r1303187 24 24 * Plugin version 25 25 */ 26 const VERSION = '1.0. 4';26 const VERSION = '1.0.5'; 27 27 /** 28 28 * Prefix used to identify things related to this plugin -
wp-advertize-it/tags/1.0.5/classes/wpai-db.php
r1302762 r1303187 66 66 67 67 $table_name = $wpdb->prefix . "wpai_placements"; 68 $prepared = self::prepareUpdateObject($placement, ['id']);68 $prepared = self::prepareUpdateObject($placement, array('id')); 69 69 70 70 $rows_affected = $wpdb->update( $table_name, $prepared, array('id' => $placement['id'])); -
wp-advertize-it/tags/1.0.5/readme.txt
r1303169 r1303187 5 5 Requires at least: 4.2.3 6 6 Tested up to: 4.3.1 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 126 126 == Changelog == 127 127 128 = 1.0.5 = 129 130 * fixed one more compatibility issue with PHP 5.3 131 128 132 = 1.0.4 = 129 133 -
wp-advertize-it/trunk/bootstrap.php
r1303169 r1303187 4 4 Plugin URI: https://wordpress.org/plugins/wp-advertize-it/ 5 5 Description: A plugin to place adsense blocks on your site 6 Version: 1.0. 46 Version: 1.0.5 7 7 Author: Henri Benoit, Alexander Herdt, amazingweb.de 8 8 Author URI: http://benohead.com -
wp-advertize-it/trunk/classes/wp-advertize-it.php
r1303169 r1303187 24 24 * Plugin version 25 25 */ 26 const VERSION = '1.0. 4';26 const VERSION = '1.0.5'; 27 27 /** 28 28 * Prefix used to identify things related to this plugin -
wp-advertize-it/trunk/classes/wpai-db.php
r1302762 r1303187 66 66 67 67 $table_name = $wpdb->prefix . "wpai_placements"; 68 $prepared = self::prepareUpdateObject($placement, ['id']);68 $prepared = self::prepareUpdateObject($placement, array('id')); 69 69 70 70 $rows_affected = $wpdb->update( $table_name, $prepared, array('id' => $placement['id'])); -
wp-advertize-it/trunk/readme.txt
r1303169 r1303187 5 5 Requires at least: 4.2.3 6 6 Tested up to: 4.3.1 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 126 126 == Changelog == 127 127 128 = 1.0.5 = 129 130 * fixed one more compatibility issue with PHP 5.3 131 128 132 = 1.0.4 = 129 133
Note: See TracChangeset
for help on using the changeset viewer.