You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The realurl administration module uses edit as a GET parameter when e.g. editing a pathcache. The key in this case is an integer.
The ButtonBarHook of gdpr takes this integer from the GET parameter and passes it to TableInformation::isTableEnabled which expects a string and therefore a type error Exception is thrown.
Most simple solution: cast the value retrieved from GET to a string before passing it on.
The text was updated successfully, but these errors were encountered:
The realurl administration module uses
edit
as a GET parameter when e.g. editing a pathcache. The key in this case is an integer.The
ButtonBarHook
of gdpr takes this integer from the GET parameter and passes it toTableInformation::isTableEnabled
which expects a string and therefore a type error Exception is thrown.Most simple solution: cast the value retrieved from GET to a string before passing it on.
The text was updated successfully, but these errors were encountered: