Plugin Directory

Changeset 2432388


Ignore:
Timestamp:
12/05/2020 09:18:28 PM (5 years ago)
Author:
saadamin
Message:

minor update

Location:
simple-student-result/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • simple-student-result/trunk/ad_scripts.php

    r1384454 r2432388  
    33// declare the URL to the file that handles the AJAX request (wp-admin/admin-ajax.php)
    44function ssr_pw_load_scripts() {
    5 wp_enqueue_script( 'my-ajax-request', plugin_dir_url( __FILE__ ) . 'js/ssr_scripts.js', array( 'jquery' ) );
     5wp_enqueue_script( 'my-ajax-request', plugin_dir_url( __FILE__ ) . 'js/ssr_scripts.js', array( 'jquery' ), SSR_VERSION );
    66wp_localize_script( 'my-ajax-request', 'SSR_Ajax', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ) ) );
    77}
     
    4545    wp_enqueue_style( 'ssr_v_result_st', SSR_plugin_url( '/css/ssr_style.css'), array(), SSR_VERSION, 'all' );
    4646    do_action( 'ssr_vi_scripts_st' );
    47     wp_register_script('ssr_front_js', SSR_plugin_url( '/js/ssr_scripts_front.js'), array('jquery'));
     47    wp_register_script('ssr_front_js', SSR_plugin_url( '/js/ssr_scripts_front.js'), array('jquery'), SSR_VERSION);
    4848    wp_enqueue_script('ssr_front_js');
    4949}
  • simple-student-result/trunk/index.php

    r2423261 r2432388  
    1212define('SSR_ROOT_PATH', dirname(__FILE__));
    1313define('SSR_TABLE', 'ssr_studentinfo');
    14 define('SSR_VERSION', '1.6.9');
    15 define('SSR_VERSION_B', '169');
     14define('SSR_VERSION', '1.7.0');
     15define('SSR_VERSION_B', '170');
    1616define( 'SSR_REQUIRED_WP_VERSION', '4.9' );
    1717define( 'SSR_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
  • simple-student-result/trunk/readme.txt

    r2423261 r2432388  
    102102
    103103 == Changelog ==
     104 1.7.0 Minor update.
    104105 1.6.9 Stable Tag.
    105106 1.6.8 Bug fixed.
Note: See TracChangeset for help on using the changeset viewer.