From a42408e2e07273b82f7c97a5fb10de8a8eb8fb06 Mon Sep 17 00:00:00 2001 From: pete_morgan Date: Wed, 14 Sep 2005 19:52:50 +0000 Subject: [PATCH] tweak --- docs/en/getting-started.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/getting-started.xml b/docs/en/getting-started.xml index 7504cd35..cc6f0ab2 100644 --- a/docs/en/getting-started.xml +++ b/docs/en/getting-started.xml @@ -221,7 +221,7 @@ define('SMARTY_DIR', 'c:/webroot/libs/Smarty-v.e.r/libs/'); // hack version example that works on both *nix and windows // Smarty is assumend to be in 'includes/' dir under current script -define('SMARTY_DIR',str_replace("\\","/",getcwd()).'/includes/Smarty/libs/'); +define('SMARTY_DIR',str_replace("\\","/",getcwd()).'/includes/Smarty-v.e.r/libs/'); require_once(SMARTY_DIR . 'Smarty.class.php'); $smarty = new Smarty(); @@ -404,7 +404,7 @@ chmod 770 /web/www.example.com/smarty/guestbook/cache/ {* Smarty *} -Hello, {$name} and welcome to Smarty! +Hello {$name}, welcome to Smarty! ]]> @@ -468,7 +468,7 @@ $smarty->display('index.tpl'); Now naviagate to the index.php file with the web browser. - You should see "Hello, Ned!" + You should see "Hello Ned, welcome to Smarty!" You have completed the basic setup for Smarty!