Deprecate StringUtil::getHash()
authorTim Düsterhus <duesterhus@woltlab.com>
Thu, 10 Jun 2021 13:50:34 +0000 (15:50 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Thu, 10 Jun 2021 13:59:51 +0000 (15:59 +0200)
commit328f30054c0861f016023599e1a3aa2b0c934289
tree777afb361d8d0c04cbddbdb439ace1ac82e17984
parent178832d74863315e15b7fbce55b2a62f82352bbd
Deprecate StringUtil::getHash()

This method was a simple alias to `\sha1()` and also defined as such. Users of
this method relied on the output of this method not changing, making it
entirely useless, because there is no benefit to use this method over `sha1()`
directly.

Deprecate `StringUtil::getHash()` and update the users to use `sha1()`.
wcfsetup/install/files/lib/data/I18nDatabaseObjectList.class.php
wcfsetup/install/files/lib/form/SearchForm.class.php
wcfsetup/install/files/lib/system/html/output/node/HtmlOutputNodePre.class.php
wcfsetup/install/files/lib/system/worker/ImportWorker.class.php
wcfsetup/install/files/lib/util/StringUtil.class.php