Changeset 1303300
- Timestamp:
- 12/08/2015 09:59:27 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.6/bootstrap.php
r1303187 r1303300 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. 56 Version: 1.0.6 7 7 Author: Henri Benoit, Alexander Herdt, amazingweb.de 8 8 Author URI: http://benohead.com -
wp-advertize-it/tags/1.0.6/classes/wp-advertize-it.php
r1303187 r1303300 24 24 * Plugin version 25 25 */ 26 const VERSION = '1.0. 5';26 const VERSION = '1.0.6'; 27 27 /** 28 28 * Prefix used to identify things related to this plugin -
wp-advertize-it/tags/1.0.6/classes/wpai-db.php
r1303187 r1303300 128 128 129 129 $table_name = $wpdb->prefix . "wpai_placements"; 130 $prepared = self::prepareUpdateObject($placement, ['id']);130 $prepared = self::prepareUpdateObject($placement, array('id')); 131 131 132 132 $rows_affected = $wpdb->insert($table_name , $prepared ); … … 200 200 201 201 $table_name = $wpdb->prefix . "wpai_blocks"; 202 $prepared = self::prepareUpdateObject($block, ['id','default_adss','current_ads']);202 $prepared = self::prepareUpdateObject($block, array('id','default_adss','current_ads')); 203 203 204 204 $rows_affected = $wpdb->update( $table_name, $prepared, array('id' => $block['id'])); … … 265 265 266 266 $table_name = $wpdb->prefix . "wpai_blocks"; 267 $prepared = self::prepareUpdateObject($block, ['id','default_adss']);267 $prepared = self::prepareUpdateObject($block, array('id','default_adss')); 268 268 269 269 $rows_affected = $wpdb->insert($table_name , $prepared ); -
wp-advertize-it/tags/1.0.6/readme.txt
r1303187 r1303300 5 5 Requires at least: 4.2.3 6 6 Tested up to: 4.3.1 7 Stable tag: 1.0. 57 Stable tag: 1.0.6 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.6 = 129 130 * fixed a few more compatibility issues with PHP 5.3 131 128 132 = 1.0.5 = 129 133 -
wp-advertize-it/trunk/bootstrap.php
r1303187 r1303300 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. 56 Version: 1.0.6 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
r1303187 r1303300 24 24 * Plugin version 25 25 */ 26 const VERSION = '1.0. 5';26 const VERSION = '1.0.6'; 27 27 /** 28 28 * Prefix used to identify things related to this plugin -
wp-advertize-it/trunk/classes/wpai-db.php
r1303187 r1303300 128 128 129 129 $table_name = $wpdb->prefix . "wpai_placements"; 130 $prepared = self::prepareUpdateObject($placement, ['id']);130 $prepared = self::prepareUpdateObject($placement, array('id')); 131 131 132 132 $rows_affected = $wpdb->insert($table_name , $prepared ); … … 200 200 201 201 $table_name = $wpdb->prefix . "wpai_blocks"; 202 $prepared = self::prepareUpdateObject($block, ['id','default_adss','current_ads']);202 $prepared = self::prepareUpdateObject($block, array('id','default_adss','current_ads')); 203 203 204 204 $rows_affected = $wpdb->update( $table_name, $prepared, array('id' => $block['id'])); … … 265 265 266 266 $table_name = $wpdb->prefix . "wpai_blocks"; 267 $prepared = self::prepareUpdateObject($block, ['id','default_adss']);267 $prepared = self::prepareUpdateObject($block, array('id','default_adss')); 268 268 269 269 $rows_affected = $wpdb->insert($table_name , $prepared ); -
wp-advertize-it/trunk/readme.txt
r1303187 r1303300 5 5 Requires at least: 4.2.3 6 6 Tested up to: 4.3.1 7 Stable tag: 1.0. 57 Stable tag: 1.0.6 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.6 = 129 130 * fixed a few more compatibility issues with PHP 5.3 131 128 132 = 1.0.5 = 129 133
Note: See TracChangeset
for help on using the changeset viewer.