Changeset 294
- Timestamp:
- 04/21/08 17:12:59 (7 months ago)
- Files:
-
- river/trunk/lib.php (modified) (2 diffs)
- river/trunk/river_shouts.php (added)
- river/trunk/river_status.php (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
river/trunk/lib.php
r247 r294 329 329 */ 330 330 function river_string_decode($string){ 331 list($string, $params) = explode("@@",$string);331 @list($string, $params) = explode("@@",$string); 332 332 if(empty($params)){ 333 333 return $string; … … 355 355 function river_keyword($params){ 356 356 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; 359 360 $limit = (is_array($params) && count($params)>=3)?$params[2]:10; 360 361
