diff options
Diffstat (limited to 'mod/blog/index.php')
| -rw-r--r-- | mod/blog/index.php | 22 | 
1 files changed, 22 insertions, 0 deletions
diff --git a/mod/blog/index.php b/mod/blog/index.php new file mode 100644 index 000000000..277771baf --- /dev/null +++ b/mod/blog/index.php @@ -0,0 +1,22 @@ +<?php
 +
 +	/**
 +	 * Elgg blog index page
 +	 * 
 +	 * @package ElggBlog
 +	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
 +	 * @author Ben Werdmuller <ben@curverider.co.uk>
 +	 * @copyright Curverider Ltd 2008
 +	 * @link http://elgg.com/
 +	 */
 +
 +	// Load Elgg engine
 +		require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
 +		
 +	// Get the current page's owner
 +		$page_owner = page_owner();
 +		
 +	// Display page
 +		page_draw(sprintf(elgg_echo('userblog'),$page_owner->name),$body);
 +		
 +?>
\ No newline at end of file  | 
