From 4a74bfede8d8f2dbb7a528630c2a385f1745ef29 Mon Sep 17 00:00:00 2001
From: Brett Bieber <brett.bieber@gmail.com>
Date: Thu, 13 Aug 2009 20:09:24 +0000
Subject: [PATCH] Fix Undefined variable: vars

---
 customindex/index.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/customindex/index.php b/customindex/index.php
index 6b2af23d..b18de1ba 100644
--- a/customindex/index.php
+++ b/customindex/index.php
@@ -14,7 +14,7 @@
 //	require_once(dirname(dirname(dirname(__FILE__))) . '/engine/start.php');
 
 	// Get view
-	$area1 = elgg_view('customindex/content', $vars);
+	$area1 = elgg_view('customindex/content', array());
 
 	// Format
 	$body = elgg_view_layout('one_column', $area1);
@@ -24,4 +24,4 @@
 	// Draw page
 	echo page_draw(elgg_echo(' Huskers Around The World'), $body);
 
-?>
\ No newline at end of file
+?>
-- 
GitLab