1
0
Fork 0

Some fixes:

- varbinary() is not needed when clear-text words like 'xmpp' are used for them,
  it also hinders using external tools like Adminer/phpMyAdmin to search for
  them as e.g. Adminer wraps a HEX() call (SQL) around `k` and `cat` (see table
  `pconfig`)
- added missing UPDATE::SUCCESS

Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2020-11-14 15:22:56 +01:00
commit 32e9a4d4d7
No known key found for this signature in database
GPG key ID: B72F8185C6C7BD78
3 changed files with 6 additions and 5 deletions

View file

@ -747,4 +747,5 @@ function pre_update_1365()
return Update::FAILED;
}
return UPDATE::SUCCESS;
}