|
Revision 602, 261 bytes
(checked in by sidtheduck, 5 months ago)
|
|
- Options re-ordering and updated functionality
- Separate sort ordering for Image, Album, and Collection
- Thumbnail resizing options based on width, height, longest side, or square
- RSS content option to allow albums or pictures to be displayed at Collections and Collection level
- Better session security and cleanup of PHP_SELF constant to deter XSS attacks
- Deprecated PHP function cleanup (still PHP4 compatible)
- Syntax cleanup including mysql_result syntax errors
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | include_once(dirname(__FILE__).'/plogger.php'); |
|---|
| 5 | |
|---|
| 6 | function the_gallery_head() { |
|---|
| 7 | return the_plogger_head(); |
|---|
| 8 | } |
|---|
| 9 | |
|---|
| 10 | function the_gallery() { |
|---|
| 11 | return the_plogger_gallery(); |
|---|
| 12 | } |
|---|
| 13 | |
|---|
| 14 | ?> |
|---|