Kyttias
01-16-2015, 10:57 AM
The sidebar login was directed down the wrong path.
I attempted to log in from visiting a user profile and I think it attempted to find a profile by the name of 'Login' which is just silly.As a fix, in class_sidebar.php I changed the following line:
$this->loginBar = new FormBuilder("login", "login", "post");
To:
$this->loginBar = new FormBuilder("login", "../../login", "post");
I'm sure there's cleaner ways of getting to the root, but relative paths should work across every page (if it can't go a folder, or two folders back, then it's already at the root, etc).