TripleT wrote:have a little question: is it possilbe to display the local records after the dedimania records.
in the standard version of aseco the dedimania records are displayed after the local records but i want to change that.
is it possilbe and if yes how do i do it?
The order in which many events are processed depends on the order in which plugins are listed in plugins.xml. So plugin.localdatabase.php is first and thus the results from its events handling (such as local record messages) are shown before those of plugin.dedimania.php (with its Dedimania record messages). However, certain plugins depend on events having been processed by other plugins first, e.g. plugin.track.php and plugin.checkpoints.php should be listed
before plugin.dedimania.php in plugins.xml, so arbitrarily re-ordering the plugins list may cause some unexpected effects.
In short, you can experiment with moving plugin.localdatabase.php below plugin.dedimania.php, but it may (or may not) break something else.