Fix two bugs (Upper case in database avoiding accents, and cat/account with the same name during modification into PreferencesPanel)

Updating translations
This commit is contained in:
2010-07-16 18:38:13 +02:00
parent 5286926588
commit d9359b2f98
7 changed files with 395 additions and 259 deletions

View File

@@ -926,7 +926,7 @@ std::vector<Operation>* Database::Search(User* user, wxString* description, wxDa
if (description)
{
req += wxT("UPPER(description) LIKE '%") + description->MakeUpper() + wxT("%'");
req += wxT("description LIKE '%") + *description + wxT("%'");
firstCond = true;
}