Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: “My Threads” – User Specific Views


_ck_
Participant

@_ck_

Ugh. So that breaks a view things I’ve done.

I’m waiting for an addition to the plugin svn and I’ll just update there at this point. I also missed checking if the user is logged in, now fixed.

I don’t run the newest trunk so I don’t have a way to test. Looks like I’ll have to setup a test account and install it again.

and I just put the finishes on a nice dropdown view box too… :-(

function views_dropdown() {
$views_dropdown='<form name="views_dropdown" id="views_dropdown">
<select size=1 name="views_dropdown_select" onchange="if (this.selectedIndex != 0) {location=this.options[this.selectedIndex].value;}}">
<option value="#">SHOW ME
> </option>';
$views=get_views(); foreach ($views as $view => $title ) {
$views_dropdown.='<option value="'.get_view_link($view).'">'.$views[$view].'</option>';
}
$views_dropdown.='</select></form>'; echo $views_dropdown;
}

Skip to toolbar