
Untitled
By: a guest on
May 12th, 2012 | syntax:
None | size: 0.42 KB | hits: 14 | expires: Never
alternate for table.tpl.php
<?php
$args=arg();
if (count($args)==3 && $args[0]="user" && $args[2]=="selling"){
for($i=0;$i<count($rows);$i++){
if (strcasecmp($rows[$i][4]['data'],"For Sale")==0){
$pos=strpos($rows[$i][1]['data'],"</a><a");
$rows[$i][1]['data']=substr($rows[$i][1]['data'],0,$pos)."</a>";
}
}
}
$output=theme_table($header, $rows, $attributes = array(), $caption = NULL);
echo $output;
?>