Plugin Directory

Changeset 1079583


Ignore:
Timestamp:
01/31/2015 02:28:11 PM (11 years ago)
Author:
think201
Message:

Few Issues Fixes.

Location:
clients
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • clients/tags/1.0.1/includes/ct-admin.php

    r1079578 r1079583  
    6868        if (!is_admin())
    6969        {           
    70             wp_enqueue_style( 'ct-css', plugins_url( 'clients/assets/css/ct.css' ), array(), FR_VERSION, 'all' );
     70            wp_enqueue_style( 'ct-css', plugins_url( 'clients/assets/css/ct.css' ), array(), CT_VERSION, 'all' );
    7171        }
    7272    }   
  • clients/tags/1.0.1/includes/ct-data.php

    r1079578 r1079583  
    2727        if($Config['category'] != CT_SHRT_CATEGORY)
    2828        {
    29             $Query .= " AND category = ".$Config['category'];
     29            $Query .= " AND category = '".$Config['category']."'";
    3030        }       
    3131
  • clients/trunk/includes/ct-admin.php

    r1079578 r1079583  
    6868        if (!is_admin())
    6969        {           
    70             wp_enqueue_style( 'ct-css', plugins_url( 'clients/assets/css/ct.css' ), array(), FR_VERSION, 'all' );
     70            wp_enqueue_style( 'ct-css', plugins_url( 'clients/assets/css/ct.css' ), array(), CT_VERSION, 'all' );
    7171        }
    7272    }   
  • clients/trunk/includes/ct-data.php

    r1079578 r1079583  
    2727        if($Config['category'] != CT_SHRT_CATEGORY)
    2828        {
    29             $Query .= " AND category = ".$Config['category'];
     29            $Query .= " AND category = '".$Config['category']."'";
    3030        }       
    3131
Note: See TracChangeset for help on using the changeset viewer.