Changeset 866890
- Timestamp:
- 02/28/2014 12:05:11 PM (12 years ago)
- Location:
- pricemesh/trunk
- Files:
-
- 4 edited
-
admin/pricemesh-admin.php (modified) (4 diffs)
-
pricemesh.php (modified) (1 diff)
-
public/pricemesh-public.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pricemesh/trunk/admin/pricemesh-admin.php
r866107 r866890 253 253 */ 254 254 public function settings_auth_token_callback(){ 255 $setting = self::get_pricemesh_settings()["token"]; 255 $opts = self::get_pricemesh_settings(); 256 $setting = $opts["token"]; 256 257 $name = "pricemesh_option_token"; 257 258 echo "<input type='text' name='$name' id='$name' value='$setting' class='regular-text'/>"; … … 266 267 */ 267 268 public function settings_auth_secret_callback(){ 268 $setting = self::get_pricemesh_settings()["secret"]; 269 $opts = self::get_pricemesh_settings(); 270 $setting = $opts["secret"]; 269 271 echo "<input type='text' name='pricemesh_option_secret' value='$setting' class='regular-text'/>"; 270 272 if(empty($setting)){ … … 286 288 */ 287 289 public function settings_basic_country_callback(){ 288 $setting = self::get_pricemesh_settings()["country"]; 290 $opts = self::get_pricemesh_settings(); 291 $setting = $opts["country"]; 289 292 $available_countries = array("de"); 290 293 … … 312 315 */ 313 316 public function settings_3rd_party_wp_robot_callback(){ 314 $setting = self::get_pricemesh_settings()["wp_robot_integration"]; 317 $opts = self::get_pricemesh_settings(); 318 $setting = $opts["wp_robot_integration"]; 315 319 if($this->is_wp_robot_installed()){ 316 320 $checked = checked('1', $setting); -
pricemesh/trunk/pricemesh.php
r866831 r866890 4 4 Plugin URI: https://www.pricemesh.io/plugins/wordpress/ 5 5 Description: Mit diesem Plugin ist es möglich Wordpress um einen eigenen Preisvergleich zu erweitern. 6 Version: 1.2. 16 Version: 1.2.2 7 7 Author: pricemesh 8 8 Author URI: https://www.pricemesh.io -
pricemesh/trunk/public/pricemesh-public.php
r866831 r866890 22 22 * @var string 23 23 */ 24 const VERSION = '1.2. 1';24 const VERSION = '1.2.2'; 25 25 26 26 /** -
pricemesh/trunk/readme.txt
r866831 r866890 4 4 Requires at least: 3.4 5 5 Tested up to: 3.8 6 Stable tag: 1.2. 16 Stable tag: 1.2.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 73 73 == Changelog == 74 74 75 = 1.2.2 = 76 * Bugfix 77 75 78 = 1.2.1 = 76 79 * Bugfix
Note: See TracChangeset
for help on using the changeset viewer.