MyBB Community Forums

Full Version: Diff Report Query
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Recently updated one of my forums from 1.8.4 to 1.8.10

Seems to have gone well - thanks folks

When I ran the diff report, showthread has two "ver=" statements in it - neither of which now apply?

See extract below

Any ideas what I should do?

Does it affect anything?

Cheers
Bugs

<script type="text/javascript" src="{$mybb->asset_url}/jscripts/report.js?ver=1804"></script>
<script src="{$mybb->asset_url}/jscripts/jeditable/jeditable.min.js"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/thread.js?ver=1804"></script>src="{$mybb->asset_url}/jscripts/thread.js?ver=1809"></script>
</head>
<body>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/thread.js?ver=1804"></script>
ver=1804 should be replaced with ver=1809
Thanks .m.

So do I delete the duplication on line 3 and make the code look like this?

Cheers
Bugs

<script type="text/javascript" src="{$mybb->asset_url}/jscripts/report.js?ver=1809"></script>
<script src="{$mybb->asset_url}/jscripts/jeditable/jeditable.min.js"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/thread.js?ver=1809"></script>
</head>
<body>
^ actual template doesn't contain duplicate code. it just needs above suggested edit.