summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages
diff options
context:
space:
mode:
Diffstat (limited to 'demos/quickstart/protected/pages')
-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;