replaced . with / for returning views and redirects

This commit is contained in:
2019-02-23 14:48:00 -06:00
parent 0bd41458ca
commit 172247cd3b
5 changed files with 14 additions and 14 deletions

View File

@@ -30,7 +30,7 @@ class WikiController extends Controller
return redirect('/dashboard')->with('error', 'Already registered for the wiki!');
}
return view('wiki.user.register')->with('name', $name);
return view('wiki/user/register')->with('name', $name);
}
public function storeRegister(Request $request) {
@@ -83,7 +83,7 @@ class WikiController extends Controller
return redirect('/dashboard')->with('error', 'Login Not Found!');
}
return view('wiki.user.changepassword')->with('name', $name);
return view('wiki/user/changepassword')->with('name', $name);
}
public function changePassword(Request $request) {
@@ -117,7 +117,7 @@ class WikiController extends Controller
* Displays the page to add a user to a certain group
*/
public function displayAddUserToGroup() {
return view('wiki.displayaddug');
return view('wiki/displayaddug');
}
/**