Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 12th, 2012  |  syntax: None  |  size: 0.42 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. alternate for table.tpl.php
  2. <?php
  3.  $args=arg();
  4.  if (count($args)==3 && $args[0]="user" && $args[2]=="selling"){
  5.   for($i=0;$i<count($rows);$i++){
  6.   if (strcasecmp($rows[$i][4]['data'],"For Sale")==0){
  7.     $pos=strpos($rows[$i][1]['data'],"</a><a");
  8.     $rows[$i][1]['data']=substr($rows[$i][1]['data'],0,$pos)."</a>";
  9.   }
  10.   }
  11.  }
  12.  $output=theme_table($header, $rows, $attributes = array(), $caption = NULL);
  13.  echo $output;
  14. ?>