[Solved] Mobile skin montage not showing images.

Forum for questions and support relating to the 1.25.x releases only.
Locked
theforce
Posts: 129
Joined: Tue May 11, 2010 5:22 am

[Solved] Mobile skin montage not showing images.

Post by theforce »

I had a probem with the mobile skin not showing images in montage view. I was able to fix the issue by editing the /usr/share/zoneminder/skins/mobile/view/montage.php file.
Here is what I changed.

Find the line that has

Code: Select all

<a href="?view=watch&mid=<?= $monitor['Id'] ?>"><img src="<?= viewImagePath( $imagePath ) ?>" alt="<?= $monitor['Name'] ?>"/></a>
Change it to

Code: Select all

<a href="?view=watch&mid=<?= $monitor['Id'] ?>"><img src="<?= $imagePath ?>" alt="<?= $monitor['Name'] ?>"/></a>

I dont know if this is someting that was missed or there is something different with my system. Just thought I would post this here in case someone else is having the same issue and for my own reference.
Locked