Skip to content

Commit

Permalink
allow sorting locations by last change in backend
Browse files Browse the repository at this point in the history
  • Loading branch information
Tastaturberuf committed Jun 14, 2019
1 parent 7a94d99 commit bf5dacd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [1.11.2]
###Added
- allow sorting locations by last change in backend
###Fixed
- remove url encoding in search module because of double encoding

Expand Down
5 changes: 3 additions & 2 deletions dca/tl_anystores.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@
),
'tstamp' => array
(
'sql' => "int(10) unsigned NOT NULL default '0'"
'sorting' => true,
'sql' => "int(10) unsigned NOT NULL default '0'"
),
'name' => array
(
Expand Down Expand Up @@ -937,7 +938,7 @@ public function fillCoordinates(DataContainer $dc)
{
return;
}

// Get country name
$arrCountries = \System::getCountries();

Expand Down

0 comments on commit bf5dacd

Please sign in to comment.