Added query escaping in method for getting zone

This commit is contained in:
Uryvskiy Dima 2023-07-10 10:09:36 +03:00 committed by GitHub
commit a375804086
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,6 @@
## v4.1.12
* Added escaping for db query in method for getting zone
## v4.1.11
* Fixed the transfer of the weight offers

View File

@ -1 +1 @@
4.1.11
4.1.12

View File

@ -124,6 +124,7 @@ class DataRepository extends \retailcrm\Base {
* @return array
*/
public function getZoneByName($name) {
$name = $this->db->escape($name);
$query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "zone` WHERE name = '" . $name . "'");
return $query->row;

View File

@ -19,6 +19,8 @@ class DataRepositoryAdminTest extends TestCase {
$this->assertNotEmpty($zone);
$this->assertNotEmpty($zone['zone_id']);
$repository->getZoneByName('Rostov-na-Do\'nu');
}
public function testGetCurrencyByCode() {