Hello,
There are references to $Image in deprecated-functions.php in 1.6a which need to be changed to $Images
WARNING: Undefined variable $image in /var/www/html/ZenPhoto/zp-core/zp-extensions/deprecated-functions/deprecated-functions.php on line 408
getRandomImages called from zpB_getRandomImages (functions.php [102])
from include (home.php [24])
from include (index.php [9])
from include (index.php [128])
from index.php [80]
----------------------------
These are the changes to deprecated-functions.php
---
405c405
< $potd = array('day' => time(), 'folder' => $image->getAlbumName(), 'filename' => $image->getName());
---
> $potd = array('day' => time(), 'folder' => $images->getAlbumName(), 'filename' => $images->getName());
408c408
< return $image;
---
> return $images;
Ray