summaryrefslogtreecommitdiff
path: root/view_post_image.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2005-08-01 18:40:05 +0000
committerMax Kremmel <xing@synapse.plus.com>2005-08-01 18:40:05 +0000
commit21e69057e4a6ae3ed3b31a25b8d4c1c8924683e4 (patch)
tree1685d8602f4674e12781efff81e32f2237b47ade /view_post_image.php
parenta09f7396779ae017a2a60993e28bc88faee13f9c (diff)
downloadblogs-21e69057e4a6ae3ed3b31a25b8d4c1c8924683e4.tar.gz
blogs-21e69057e4a6ae3ed3b31a25b8d4c1c8924683e4.tar.bz2
blogs-21e69057e4a6ae3ed3b31a25b8d4c1c8924683e4.zip
merge recent changes with HEAD - R1 and HEAD are identical now
Diffstat (limited to 'view_post_image.php')
-rw-r--r--view_post_image.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/view_post_image.php b/view_post_image.php
index c636fa6..67bc199 100644
--- a/view_post_image.php
+++ b/view_post_image.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_blogs/view_post_image.php,v 1.2 2005/06/28 07:45:39 spiderr Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_blogs/view_post_image.php,v 1.3 2005/08/01 18:40:04 squareing Exp $
* @package blogs
* @subpackage functions
@@ -18,12 +18,12 @@ require_once( '../bit_setup_inc.php' );
include_once( BLOGS_PKG_PATH.'BitBlog.php' );
if (!isset($_REQUEST["image_id"])) {
- $smarty->assign('msg', tra("No image id given"));
+ $gBitSmarty->assign('msg', tra("No image id given"));
$gBitSystem->display( 'error.tpl' );
die;
}
$imageInfo = $gBlog->getStorageFileInfo($_REQUEST["image_id"]);
-$smarty->assign( 'imageInfo' , $imageInfo );
+$gBitSmarty->assign( 'imageInfo' , $imageInfo );
$gBitSystem->display( 'bitpackage:blogs/view_post_image.tpl' );
?>