I would like to change the src parameter of the historical graphs that are generated to use absolute paths instead of relative.
For example:
Changing the following line -
<img class="prtgchart load" onload="$(this).removeClass('load');" src="/chart.png?graphid=-1&id=23223&avg=60
to
<img class="prtgchart load" onload="$(this).removeClass('load');" src="https://example.com/chart.png?graphid=-1&id=23223&avg=60
Add comment