Changeset 294

Show
Ignore:
Timestamp:
04/21/08 17:12:59 (7 months ago)
Author:
rho
Message:
  • Fixed notice
  • Added shouts plugin support
  • Added status plugin support

Signed-off: Rolando Espinoza La fuente <rho@prosoftpeople.com>

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • river/trunk/lib.php

    r247 r294  
    329329 */ 
    330330function river_string_decode($string){ 
    331   list($string, $params) = explode("@@",$string); 
     331  @list($string, $params) = explode("@@",$string); 
    332332  if(empty($params)){ 
    333333    return $string; 
     
    355355function river_keyword($params){ 
    356356         
    357         error_log(print_r($params,true)); 
    358         $user_id = (is_array($params) && count($params)>=2)?$params[1]:""; 
     357        global $page_owner; 
     358 
     359        $user_id = (is_array($params) && count($params)>=2)?$params[1]:$page_owner; 
    359360        $limit = (is_array($params) && count($params)>=3)?$params[2]:10; 
    360361