Plugin Directory

Changeset 367670

Timestamp:
03/31/2011 08:24:25 PM (13 years ago)
Author:
jghazally
Message:

Fix Plugin Header styling and addin issue 492 props garyc40

Location:
wp-e-commerce/branches/3.8-development
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-e-commerce/branches/3.8-development/wp-shopping-cart.php

    r364482 r367670  
    11<?php
    2 
    3 /*
    4   Plugin Name: WP e-Commerce
    5   Plugin URI: http://getshopped.org/
    6   Description: A plugin that provides a WordPress Shopping Cart. See also: <a href="http://getshopped.org" target="_blank">GetShopped.org</a> | <a href="http://getshopped.org/forums/" target="_blank">Support Forum</a> | <a href="http://getshopped.org/resources/docs/" target="_blank">Documentation</a>
    7   Version: 3.8.RC.4
    8   Author: Instinct Entertainment
    9   Author URI: http://getshopped.org/
    10  */
     2/**
     3  * Plugin Name: WP e-Commerce
     4  * Plugin URI: http://getshopped.org/
     5  * Description: A plugin that provides a WordPress Shopping Cart. See also: <a href="http://getshopped.org" target="_blank">GetShopped.org</a> | <a href="http://getshopped.org/forums/" target="_blank">Support Forum</a> | <a href="http://docs.getshopped.org/" target="_blank">Documentation</a>
     6  * Version: 3.8.RC.4
     7  * Author: Instinct Entertainment
     8  * Author URI: http://getshopped.org/
     9  **/
    1110
    1211/**
  • wp-e-commerce/branches/3.8-development/wpsc-admin/includes/save-data.functions.php

    r353492 r367670  
    627627                //find the countries that are selected
    628628                $selectedCountries = array_intersect($countryList, $_POST['countrylist2']);
    629                  wpsc_update_categorymeta( $category_id,   'target_market', $selectedCountries);
     629                wpsc_update_categorymeta( $category_id,   'target_market', $selectedCountries);
    630630            }
    631631           
  • wp-e-commerce/branches/3.8-development/wpsc-includes/product-template.php

    r364480 r367670  
    15901590function wpsc_product_count() {
    15911591    global $wp_query;
    1592     return count($wp_query->post);
     1592    return count($wp_query->post);
    15931593}
    15941594
Note: See TracChangeset for help on using the changeset viewer.