Hello everybody, is there any news on this?
I used this plugin for many websites so it will be better update bug fixed in plugin.
Any updates on this issue with the error:
Deprecated: Array and string offset access syntax with curly braces is deprecated in …/plugins/kint-debugger/vendor/kint/inc/kintParser.class.php on line 463
It not only causes the deprecation errors, but is also breaking the page builder I use (BeaverBuilder).
Awesome! I’m downloading and will try it out.
Here is the patch if it makes your live easier:
diff --git a/vendor/kint/inc/kintParser.class.php b/vendor/kint/inc/kintParser.class.php
index 7d57fe9..5b5984b 100644
--- a/vendor/kint/inc/kintParser.class.php
+++ b/vendor/kint/inc/kintParser.class.php
@@ -460,9 +460,9 @@ abstract class kintParser extends kintVariableData
* These prepended values have null bytes on either side.
* http://www.php.net/manual/en/language.types.array.php#language.types.array.casting
*/
- if ( $key{0} === "\x00" ) {
+ if ( $key[0] === "\x00" ) {
- $access = $key{1} === "*" ? "protected" : "private";
+ $access = $key[1] === "*" ? "protected" : "private";
// Remove the access level from the variable name
$key = substr( $key, strrpos( $key, "\x00" ) + 1 );