Plugin Directory

Changeset 1460605


Ignore:
Timestamp:
07/26/2016 06:36:57 AM (10 years ago)
Author:
bhavinder
Message:

Resolve conflicts with WP Super Sonic Admin Panel

Location:
wp-super-speed/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-super-speed/trunk/readme.txt

    r1454235 r1460605  
    6767= 1.1 =
    6868* Delete unused post meta and optimise database.
     69= 1.2 =
     70* Resolve conflicts with WP Super Sonic Admin Panel
    6971
    7072== Upgrade Notice ==
     
    7375= 1.1 =
    7476* Delete unused post meta and optimise database.
     77= 1.2 =
     78* Resolve conflicts with WP Super Sonic Admin Panel
  • wp-super-speed/trunk/wp-super-speed.php

    r1454235 r1460605  
    33Plugin Name: WP Super Speed
    44Description: This powerful plugin dramatically reducing CPU and RAM utilazation by 70-80%. Just install and activate it and in return get an optimized and speedy version of your website backend as well as front end. Surely you’ll find a difference due to its presence.
    5 Version: 1.1
     5Version: 1.2
    66Author: Bhavinder Singh
    77License: GPL2
     
    1111}
    1212
    13 function WPSS_activate() {
     13function wpsuperspeed_activate() {
    1414
    1515global $wpdb;
     
    4545}
    4646// run the install scripts upon plugin activation
    47 register_activation_hook(__FILE__,'WPSS_activate');
     47register_activation_hook(__FILE__,'wpsuperspeed_activate');
    4848
    4949
    50 add_action('admin_menu', 'WPSS_menu');
    51 function WPSS_menu() {
    52     add_menu_page('WP Super Speed', 'WP Super Speed', 'administrator', 'wpss', 'wpss_page', 'dashicons-admin-generic');
     50add_action('admin_menu', 'wpsuperspeed_menu');
     51function wpsuperspeed_menu() {
     52    add_menu_page('WP Super Speed', 'WP Super Speed', 'administrator', 'wpsuperspeed', 'wpsuperspeed_page', 'dashicons-admin-generic');
    5353}
    5454
    55 function wpss_page() {
     55function wpsuperspeed_page() {
    5656?>
    5757<div class="wrap">
Note: See TracChangeset for help on using the changeset viewer.