-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The link “Back to previous page” leads back to a different page than the one I came from. #3662
Comments
I'm afraid I can't reproduce this. Does it still happen on MRBS 1.11.5? Also, what have you got |
Unfortunately I do not have the resources available at the moment to update to MRBS 1.11.5. In the file view_entry.php the line The following workaround seems to work at the moment:
|
OK. What have you got |
Yes, but it could create other problems which |
Thank you very much for your time. Oh, sorry, I forgot: This is my config
This is my auth-file: (I have attached '.txt' to be able to upload the file) |
Thanks. Could you please
|
By the way, you could simply your AuthDgfc.php code by extending AuthDbExt rather than AuthDb: namespace MRBS\Auth;
class AuthDgfc extends AuthDbExt
{
private $db_moreconditions;
public function __construct()
{
global $auth;
parent::__construct();
$this->db_moreconditions = $auth['db_ext']['db_moreconditions'];
}
public function validateUser(
#[\SensitiveParameter]
?string $user,
#[\SensitiveParameter]
?string $pass)
{
// Your existing code here
}
} That way you can (a) cut down the amount of duplicated code and (b) benefit from enhancements and bug fixes to the duplicated code. |
…tending the class. See GitHub Issue #3662.
I've now separted some of the code in |
…tending the class. See GitHub Issue meeting-room-booking-system#3662.
In the day view I select a date, let's say 28.04.2024 and click on an event to read the details.
If I then use the “Return to previous page” link, it takes me back to a different date. But that doesn't always happen.
The behavior occurs in Chrome and Firefox.
To illustrate this, I have published a video online in which the process can be seen.
I am using MRBS 1.11.4
The text was updated successfully, but these errors were encountered: