Skip to content

Commit

Permalink
Fix order of changelog values on torrent history page
Browse files Browse the repository at this point in the history
  • Loading branch information
itismadness committed Aug 15, 2021
1 parent 1bc1372 commit 306047a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sections/torrents/takeedit.php
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
continue;
}
if (isset($Properties[$key]) && $value !== $Properties[$key]) {
$change[] = sprintf('%s %s → %s', $key, $Properties[$key], $value);
$change[] = sprintf('%s %s → %s', $key, $value, $Properties[$key]);
}
}

Expand Down

0 comments on commit 306047a

Please sign in to comment.