The shout code worked for me on Joomla 1.5 with the risp shoutbox pro beta 5 rc2. However, the times were always wrong by 6 hours. Here is how to fi that if you have the same problem, see the code below:
| Code: |
// now we shout
$entryby = "Rock Paper Scissors";
$date =& JFactory::getDate();
$thetime = $date->toUnix();
$url = "index.php?option=com_purps";
$query = "INSERT INTO #__shoutbox (time,name,text,url) VALUES ('" . $thetime . "','". $entryby ."','". $msg ."','" . $url . "')";
$database->setQuery($query);
$shout = $database->query();
// end of shoutbox mode
|
notice the different call for time and date. You also have to make the same change where it shouts for a new challenge later down in the file.
Or you can just download the hacked purps.php file. The only change is the shoutbox with the update for time.