Page 1 of 1

[Solved] Mobile skin montage not showing images.

Posted: Fri Dec 07, 2012 10:45 pm
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.