mirror of
https://github.com/e107inc/e107.git
synced 2025-08-02 12:48:26 +02:00
Moving to protocol auto-detection (wsdl prefered)
This commit is contained in:
@@ -266,7 +266,7 @@ class pluginManager{
|
|||||||
if(null === $this->mp)
|
if(null === $this->mp)
|
||||||
{
|
{
|
||||||
require_once(e_HANDLER.'e_marketplace.php');
|
require_once(e_HANDLER.'e_marketplace.php');
|
||||||
$this->mp = new e_marketplace('xmlrpc'); // XXX temporary force xmplrpc
|
$this->mp = new e_marketplace(); // autodetect the best method
|
||||||
}
|
}
|
||||||
return $this->mp;
|
return $this->mp;
|
||||||
}
|
}
|
||||||
|
@@ -457,7 +457,7 @@ class themeHandler
|
|||||||
if(null === $this->mp)
|
if(null === $this->mp)
|
||||||
{
|
{
|
||||||
require_once(e_HANDLER.'e_marketplace.php');
|
require_once(e_HANDLER.'e_marketplace.php');
|
||||||
$this->mp = new e_marketplace('xmlrpc'); // XXX temporary force xmplrpc
|
$this->mp = new e_marketplace(); // autodetect the best method
|
||||||
}
|
}
|
||||||
return $this->mp;
|
return $this->mp;
|
||||||
}
|
}
|
||||||
@@ -528,9 +528,7 @@ class themeHandler
|
|||||||
$text .= "{CAROUSEL_INDICATORS}";
|
$text .= "{CAROUSEL_INDICATORS}";
|
||||||
$text .= "</div>";
|
$text .= "</div>";
|
||||||
$text .= '<div id="shop" style="margin-top:10px;min-height:585px" class=" carousel-inner">';
|
$text .= '<div id="shop" style="margin-top:10px;min-height:585px" class=" carousel-inner">';
|
||||||
|
|
||||||
|
|
||||||
//var_dump($xdata);
|
|
||||||
if(is_array($xdata['data'] ))
|
if(is_array($xdata['data'] ))
|
||||||
{
|
{
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user