Changeset 703574
- Timestamp:
- 04/25/2013 05:04:50 PM (13 years ago)
- Location:
- pagely-reseller-management/trunk
- Files:
-
- 2 edited
-
partner-api.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pagely-reseller-management/trunk/partner-api.php
r702419 r703574 4 4 Plugin URI: https://docs-api.pagely.com/reseller-plugin/ 5 5 Description: For Pagely Resellers 6 Version: 3.1. 26 Version: 3.1.3 7 7 Author: joshua.strebel 8 8 Author URI: https://page.ly … … 78 78 class PagelyApi { 79 79 80 80 var $ver ='p3.1.3'; 81 81 var $pagely_api_sec = ''; 82 82 var $bypass_pagely_varnish = true; // if running on page.ly, need to bypass varnish 83 83 84 84 var $live_endpoint = 'https://api.pagely.com/v1'; 85 //var $sandbox_endpoint = 'https://sandbox-api.pagely.com/v1';86 var $sandbox_endpoint = 'http://api.hcs/v1';85 var $sandbox_endpoint = 'https://sandbox-api.pagely.com/v1'; 86 // var $sandbox_endpoint = 'http://api.hcs/v1'; 87 87 88 88 … … 199 199 wp_deregister_script( 'jquery-validate' ); 200 200 wp_register_script( 'jquery-validate', $api_val , 'jquery'); 201 wp_register_script( 'pp-form-js', $api_js, 'jquery' );202 wp_register_script( 'pp-options', $api_options, 'jquery' );201 wp_register_script( 'pp-form-js', $api_js, 'jquery',$this->ver); 202 wp_register_script( 'pp-options', $api_options, 'jquery',$this->ver); 203 203 204 204 wp_enqueue_script( 'jquery' ); -
pagely-reseller-management/trunk/readme.txt
r702419 r703574 20 20 Read [the documentation here](https://docs-api.pagely.com/reseller-plugin/). 21 21 == Changelog == 22 = 3.1.3 = 23 Cache buster for .js enqueued files. 22 24 = 3.1.2 = 23 25 Proper use of nounces, some code cleanup.
Note: See TracChangeset
for help on using the changeset viewer.