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
joltcoke opened this issue
Jan 20, 2021
· 1 comment
· Fixed by #16586
Assignees
Labels
BugA problem or regression with an existing featurehas-prAn issue that has a pull request pending that may fix this issue. The pull request may be incomplete
Configuring a BLOB column to have browser transformation set to Inline JPG and clicking on the (also broken) thumbnail will result in the following warning:
Fatal error: Uncaught TypeError: Argument 1 passed to PhpMyAdmin\Core::downloadHeader() must be of the type string, null given, called in /var/www/html/transformation_wrapper.php on line 131 and defined in /var/www/html/libraries/classes/Core.php:631 Stack trace:
#0 /var/www/html/transformation_wrapper.php(131): PhpMyAdmin\Core::downloadHeader(NULL, 'Image/JPEG')
#1 {main} thrown in /var/www/html/libraries/classes/Core.php on line 631
Open new phpMyAdmin window
Notice in ./transformation_wrapper.php#131
Undefined variable: cn
transformation_wrapper.php is expecting "cn" to be passed on the query string, which is not the case at the moment. Manually appending &cn= fixes the issue.
The text was updated successfully, but these errors were encountered:
Adding 'cn' => '', to _url_params in Results.php should fix it, not sure if this is the correct fix. Happy to provide a PR if someone can confirm this is the right approach.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
BugA problem or regression with an existing featurehas-prAn issue that has a pull request pending that may fix this issue. The pull request may be incomplete
Configuring a BLOB column to have browser transformation set to Inline JPG and clicking on the (also broken) thumbnail will result in the following warning:
Open new phpMyAdmin window
transformation_wrapper.php is expecting "cn" to be passed on the query string, which is not the case at the moment. Manually appending &cn= fixes the issue.
The text was updated successfully, but these errors were encountered: