We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
oscommerce2/catalog/admin/banner_manager.php
Line 472 in de0e97d
Template link is urldecoded.
Use
var fetchStatsUrl = 'https://website/catalog/admin/banner_manager.php?action=fetchStats&banners_id={{id}}';
instead of URL encoded {{}} template definition
var fetchStatsUrl = 'https://website/catalog/admin/banner_manager.php?action=fetchStats&banners_id=%7B%7Bid%7D%7D';
One possible solution...
<script> $(function() { var fetchStatsUrl = '<?= urldecode(addslashes(OSCOM::link('banner_manager.php', 'action=fetchStats&banners_id={{id}}'))); ?>';
The text was updated successfully, but these errors were encountered:
No branches or pull requests
oscommerce2/catalog/admin/banner_manager.php
Line 472 in de0e97d
Template link is urldecoded.
Use
instead of URL encoded {{}} template definition
One possible solution...
The text was updated successfully, but these errors were encountered: