Plugin Directory

Changeset 556965


Ignore:
Timestamp:
06/12/2012 10:34:10 PM (14 years ago)
Author:
ShopSite
Message:
 
Location:
shopsite-plugin/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • shopsite-plugin/trunk/readme.txt

    r515004 r556965  
    2929
    3030== Changelog ==
     31= 1.1 =
     32* Fixed a bug preventing product display in the blog for some PHP config settings
    3133
    3234= 1.0 =
  • shopsite-plugin/trunk/shopsite.php

    r514950 r556965  
    22/**
    33 * @package ShopSite
    4  * @version 1.0
     4 * @version 1.1
    55 */
    66/*
     
    99Description: ShopSite plugin to put products into your WordPress blog
    1010Author: ShopSite
    11 Version: 1.0
     11Version: 1.1
    1212Author URI: http://shopsite.com/
    1313*/
     
    472472  $url = $shopsite_url."&operation=get_products&".$identifier."_list=".$id_list."&signature=".$signature;
    473473  ///debug_print($url);
     474  $url_openable = ini_get('allow_url_fopen');
     475  ini_set('allow_url_fopen', true);
    474476  $handle = fopen($url,'r');
     477  ini_set('allow_url_fopen', $url_openable);
    475478    print(stream_get_contents($handle));
    476479}
Note: See TracChangeset for help on using the changeset viewer.