<div class='quotetop'>QUOTE(vortx21 @ Apr 27 2006, 11:51 AM) [snapback]246126[/snapback]</div> Thanks! Great idea. (I wonder why I didn't think of it! ) . . . Damn! It doesn't actually work. It always returns the same results even after marking them read.
<div class='quotetop'>QUOTE(Kiloran @ Apr 27 2006, 12:00 PM) [snapback]246131[/snapback]</div> Yea, so we're back to queries for "All places", "One place", and now "All but Fred's"...
<div class='quotetop'>QUOTE(Kiloran @ Apr 27 2006, 09:00 AM) [snapback]246131[/snapback]</div> Yay! The inestimable Kiloran, who provided so much useful information for us on the Prius tax credit---and a pricing calculator---will be back (when everything works)! And I'm going to embarrass him by saying it here. 'Course, I'll have to sneak out of FHOP occasionally to rendezvous with him on his Rubik's Cube thread (or whatever), but small price to pay for great company. I'll irritate him even more by saying that something's coming up involving him that most of us will be interested in (if it's done as I hope it will be). I hope he'll find an appropriate venue with which to share it with us. (If it doesn't materialize, well, blame me for being a jerk, not Kiloran.)
Here's the code in case anyone can figure out how to get a button that says "All New Posts Except Fred's": Code:         $output_array['MEMBER_BAR'] = $this->ipsclass->compiled_templates['skin_global']->member_bar($msg_data); Add Above:         if( $this->ipsclass->member['id'] )         {             require_once( ROOT_PATH.'sources/lib/admin_forum_functions.php' );             $aff = new admin_forum_functions();             $aff->ipsclass =& $this->ipsclass;             $list = $aff->ad_forums_forum_list(1);             foreach( $list as $k => $v )             {                 $the_html .= "<option value='{$v[0]}'>{$v[1]}</option>";             }             $msg_data['FORUMS'] = "<select name='forums[]' class='forminput' size='7' multiple='multiple'>"                   ."<option value='all' selected='selected'>".$this->ipsclass->lang['vnp_forums']."</option>"                   . $the_html                   . "</select>";         }
<div class='quotetop'>QUOTE(Danny @ Apr 28 2006, 12:05 AM) [snapback]246467[/snapback]</div> Not too sure of the exact syntax but would something like this work?: Code:         $output_array['MEMBER_BAR'] = $this->ipsclass->compiled_templates['skin_global']->member_bar($msg_data); Add Above:         if( $this->ipsclass->member['id'] )         {             require_once( ROOT_PATH.'sources/lib/admin_forum_functions.php' );             $aff = new admin_forum_functions();             $aff->ipsclass =& $this->ipsclass;             $list = $aff->ad_forums_forum_list(1);             foreach( $list as $k => $v )             {                 if( $v[1] <> "Fred's House of Pancakes" )                 {                     $the_html .= "<option value='{$v[0]}'>{$v[1]}</option>";                 }             }             $msg_data['FORUMS'] = "<select name='forums[]' class='forminput' size='7' multiple='multiple'>"                   ."<option value='all' selected='selected'>".$this->ipsclass->lang['vnp_forums']."</option>"                   . $the_html                   . "</select>";         } (GhostOfJK is referring to an upcoming article in the Philadelphia Inquirer for which I was interviewed and photographed. It's possibly in today's paper although I haven't found it if its there.)