Hi,
In the mean time, is there a problem if I modified ...
/zp-core/admin-albumsort.php
by replacing ...
--------------------------------------------------
<ul id="images">
<?php
$images = $album->getImages();
foreach ($images as $imagename) {
$image = newImage($album, $imagename);
?>
<li id="id_<?php echo $image->getID(); ?>">
...
<?php
}
?>
--------------------------------------------------
by
--------------------------------------------------
<ul id="images">
<?php
$images = $album->getImages();
foreach ($images as $imagename) {
$image = newImage($album, $imagename);
?>
<?php
if ($image->getShow()) {
?>
<li id="id_<?php echo $image->getID(); ?>">
...
<?php
}
?>
<?php
}
?>
--------------------------------------------------
I tested and images that were unpublished did not show up. BUT, I do not want to create any problems by dong this.
Is this ok ?