cubecart / v6

CubeCart Version 6
https://cubecart.com
72 stars 59 forks source link

Choice of Variable Name #3432

Closed bhsmither closed 9 months ago

bhsmither commented 9 months ago

Trivial:

In Catalogue->searchCatalogue(), there is a variable named $max_word_len. It holds the value from DB->getWordSearchLen() which gets the database's minimum word length for a FULLTEXT search.

Suggest $fulltext_min_word_len. (There are two instances of this variable.)

Also, there is a variable named $search_str_len. The name is somewhat misleading.

Suggest $longest_search_word_len. (There are six instances of this variable.)

abrookbanks commented 9 months ago

Thanks.