Skip to content

Commit

Permalink
Merge branch '6.13' into 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrerom committed Jan 15, 2018
2 parents ba45f68 + cf19c6a commit d2d77a0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ protected function doBackupCustomLocationAliases()
->from('ezcontentobject_tree')
->where($queryBuilder->expr()->neq('node_id', 1))
->orderBy('depth', 'ASC')
->orderBy('node_id', 'ASC');
->addOrderBy('node_id', 'ASC');

$this->output->writeln("Backing up custom URL alias(es) for {$totalCount} Location(s).");

Expand Down Expand Up @@ -586,7 +586,7 @@ protected function doGenerateLocationAliases()
->from('ezcontentobject_tree')
->where($queryBuilder->expr()->neq('node_id', 1))
->orderBy('depth', 'ASC')
->orderBy('node_id', 'ASC');
->addOrderBy('node_id', 'ASC');

$this->output->writeln(
"Publishing URL aliases for {$totalLocationCount} Location(s) " .
Expand Down

0 comments on commit d2d77a0

Please sign in to comment.