- 🇱🇧Lebanon rida-maksour
"SELECT * FROM variable WHERE name LIKE 'accordion_menu_$delta%'"
Should be
"SELECT * FROM {variable} WHERE name LIKE 'accordion_menu_$delta%'"
To take prefix into consideration if it exists
In accordion_menu.install function _accordion_menu_config_0106 there is an SQL query:
"SELECT * FROM variable WHERE name LIKE 'accordion_menu_$delta%'"
It does not take into account the possibility of a web site using prefixed table names.
Fixed
1.3
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
"SELECT * FROM variable WHERE name LIKE 'accordion_menu_$delta%'"
Should be
"SELECT * FROM {variable} WHERE name LIKE 'accordion_menu_$delta%'"
To take prefix into consideration if it exists