summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Fundamentals
diff options
context:
space:
mode:
authorxue <>2006-03-06 05:03:44 +0000
committerxue <>2006-03-06 05:03:44 +0000
commit4a244c109126fcec5ef43b185225d094e166e29a (patch)
treec3c577270b2f6c66499f5e8296f8e46717d34200 /demos/quickstart/protected/pages/Fundamentals
parentb423ccc70198d2a73f991fc5a55f089d9e195082 (diff)
small fixes to prepare for beta release
Diffstat (limited to 'demos/quickstart/protected/pages/Fundamentals')
-rw-r--r--demos/quickstart/protected/pages/Fundamentals/Samples/Hangman/Home.php4
1 files changed, 2 insertions, 2 deletions
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;