I have a joomla module on www.bisaas.nl and this one isnt working anymore.
I have rebuild the module. It was only possible to search on one hash tag.
I made it possible it can search on 10 hashtags. But on the 22th of march it isnt working anymore.
This is the code of the builder from the joomla module.
I think the problem is in the widget file. But that one is a mess.
This widget file is from 2011.
Can some one help me pleaseeee???
<?php
/**
**/
defined(’_JEXEC’) or die(‘Restricted access’);
ini_set(‘display_errors’,0);
$moduleclass_sfx=$params->get(‘moduleclass_sfx’);
if($params->get(‘toptweets’) == ‘yes’)
{
$toptweets=“true”;
}
else
{
$toptweets=“false”;
}
if($params->get(‘scrollbar’) == ‘yes’)
{
$scrollbar=“true”;
}
else
{
$scrollbar=“false”;
}
if($params->get(‘loop’) == ‘yes’)
{
$loop=“true”;
}
else
{
$loop=“false”;
}
if($params->get(‘live’) == ‘yes’)
{
$live=“true”;
}
else
{
$live=“false”;
}
if($params->get(‘hashtags’) == ‘yes’)
{
$hashtags=“true”;
}
else
{
$hashtags=“false”;
}
if($params->get(‘avatars’) == ‘yes’)
{
$avatars=“true”;
}
else
{
$avatars=“false”;
}
if($params->get(‘timestamp’) == ‘yes’)
{
$timestamp=“true”;
}
else
{
$timestamp=“false”;
}
if($params->get(‘auto’) == ‘yes’)
{
$width="‘auto’";
}
else
{
$width=$params->get(‘width’);
}
?>
<?php if( $params->get('widget_type') == 'profile') { ?>
<?php if( $params->get('display_with') == 'html') { ?>
<?php } else {?>
<?php }
}
?>
<?php if( $params->get('widget_type') == 'search') { ?>
<?php } ?>