Bug with forum admin option links drop down list.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mbozio
    Member
    • Mar 2002
    • 55
    • 5.0.X

    Bug with forum admin option links drop down list.

    in moderator.php located in the root of vb2.2.9
    At line 79 u have :
    PHP Code:
    header("Location: mod/index.php?s=$session[sessionhash]&loc="
    .urlencode("moderate.php?s=$session[sessionhash]%26action=attachments")); 
    the %26 right b4 action look like a typo... i changed it to a '&' :
    PHP Code:
    header("Location: mod/index.php?s=$session[sessionhash]&loc="
    .urlencode("moderate.php?s=$session[sessionhash]&action=attachments")); 
    with that change, the view attachement queue is working properly.
Loading...
Working...