Hi there,
You could override this module for template:
Copy this file: modulesmod_articles_populartmpldefault.php
To templatesja_t3_blankhtmlmod_articles_popular you may need create these 2 folders
Then open default.php file and replace:
[PHP]<ul class=”mostread<?php echo $moduleclass_sfx; ?>”>
<?php foreach ($list as $item) : ?>
<li>
<a href=”<?php echo $item->link; ?>”>
<?php echo $item->title; ?></a>
</li>
<?php endforeach; ?>
</ul>[/PHP]
with:
[PHP]<ol class=”mostread<?php echo $moduleclass_sfx; ?>”>
<?php foreach ($list as $item) : ?>
<li>
<a href=”<?php echo $item->link; ?>”>
<?php echo $item->title; ?></a>
</li>
<?php endforeach; ?>
</ol>[/PHP]
This override will help your changes to template would not be affected when you update JAT3.