| Private photo showing in recent photo import
I have a small php file which shows the 2 most recent photos and 2 random photos. However, it is pulling images from private albums as well which I would l would like to stop. Below is the code I am using.
<?php
require "pp-inc.php";
?>
<table>
<tr><td style="border:solid;border-color:<!--[$sepcolor]-->;border-width:thin;text-align:left">
<?php
display_gallery("latest", "", "", 2, 2);
?>
</td><td style="border:solid;border-color:<!--[$sepcolor]-->;border-width:thin;text-align:left">
<?php
display_gallery("random", "", "", 2, 2);
?>
</td></tr>
</table>
Any help would be appreciated.
Thank you
-Gregg
|