summaryrefslogtreecommitdiff
path: root/browse.php
diff options
context:
space:
mode:
Diffstat (limited to 'browse.php')
-rw-r--r--browse.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/browse.php b/browse.php
new file mode 100644
index 0000000..7eac5b3
--- /dev/null
+++ b/browse.php
@@ -0,0 +1,15 @@
+<?php
+
+require_once( '../bit_setup_inc.php' );
+
+require_once( FISHEYE_PKG_PATH.'FisheyeGallery.php');
+require_once( FISHEYE_PKG_PATH.'FisheyeImage.php');
+global $gBitSystem, $smarty;
+
+$gFisheyeGallery = new FisheyeGallery();
+$galleryList = $gFisheyeGallery->getList( $_REQUEST );
+$smarty->assign_by_ref('galleryList', $galleryList);
+
+$gBitSystem->display("bitpackage:fisheye/browse_galleries.tpl");
+
+?>