From 4a244c109126fcec5ef43b185225d094e166e29a Mon Sep 17 00:00:00 2001 From: xue <> Date: Mon, 6 Mar 2006 05:03:44 +0000 Subject: small fixes to prepare for beta release --- .../quickstart/protected/pages/Fundamentals/Samples/Hangman/Home.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'demos/quickstart/protected') diff --git a/demos/quickstart/protected/pages/Fundamentals/Samples/Hangman/Home.php b/demos/quickstart/protected/pages/Fundamentals/Samples/Hangman/Home.php index 1d78186d..711600aa 100644 --- a/demos/quickstart/protected/pages/Fundamentals/Samples/Hangman/Home.php +++ b/demos/quickstart/protected/pages/Fundamentals/Samples/Hangman/Home.php @@ -6,7 +6,7 @@ class Home extends TPage if (!$this->IsPostBack) $this->GameMultiView->ActiveView=$this->IntroView; } - + public function selectLevel($sender,$param) { if(($selection=$this->LevelSelection->SelectedValue)==='') @@ -15,7 +15,7 @@ class Home extends TPage return; } else - $this->Level=TPropertyValue::ensureInteger($selection); + $this->Level=TPropertyValue::ensureInteger($selection); $this->Word=$this->generateWord(); $this->GuessWord=str_repeat('_',strlen($this->Word)); $this->Misses=0; -- cgit v1.2.3