Upgrading to v4.4.0 may give you fits with custom plugins due to the new security policy. You'll need to edit the problem plugins to include the new function nonce() to ANY 'script' tag, and/or use the new script_src() function to build the script src line.
If you need to load fonts with the stylesheet for Adminer v4.4.0, it'll fail due to the new security policy. You can circumvent this by overriding the csp() function to allow a font-src of self (same domain) function csp() { return array( array( "default-src" => "'none'", "script-src" => "'self' 'unsafe-inline' 'nonce-" . get_nonce() . "' 'strict-dynamic'", // 'self' is a fallback for browsers not supporting 'strict-dynamic', 'unsafe-inline' is a fallback for browsers not supporting 'nonce-' "style-src"...
Whenever I load the included tables-filter plugin with v4.4.0, I get an error saying that tablesFilterInput is not defined. Any ideas on how to fix?
Ok thanks...the quick hack seems to be editing editing.inc.php at line #60 replacing if ($val === null) { $val = "<i>NULL</i>"; } elseif ($blobs[$key] && !is_utf8($val)) { $val = "<i>" . lang('%d byte(s)', strlen($val)) . "</i>"; //! link to download } elseif (!strlen($val)) { // strlen - SQLite can return int $val = " "; // some content to print a border } else { $val = h($val); if ($types[$key] == 254) { // 254 - char $val = "<code>$val</code>"; } } with $val = select_value($val,null,$key...
I have some customized plugins which decode json/serialized data for display as a 'title' and as a click activated table. They work great in the 'Select Data' table view (SelectVal) and the 'Edit' single record (editInput) views, but NOT in the SQL Command output view. Is there a hook/function that is used for the display of that view?
It's one of the plugins listed on the plugins page
I'm getting a message from a server that adminer v4.2.3 is detected as malware, any...
Line #14 will cause a fatal error if the plugin is loaded since ereg is fully deprecated,...