diff options
author | xue <> | 2006-05-31 01:47:08 +0000 |
---|---|---|
committer | xue <> | 2006-05-31 01:47:08 +0000 |
commit | 652bffab24bab354d9e3022b22866640f4fd4a0e (patch) | |
tree | 4af511b9928387713f68a3ab279e7e3dc2980021 /demos/blog/protected/Pages/Posts | |
parent | bf900e824f2c661df6380fd0360c13377da58bae (diff) |
Fixed a bug that newly created controls during postbacks may get their initial states reset during loadStateRecursive.
Diffstat (limited to 'demos/blog/protected/Pages/Posts')
-rw-r--r-- | demos/blog/protected/Pages/Posts/ListPost.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/demos/blog/protected/Pages/Posts/ListPost.php b/demos/blog/protected/Pages/Posts/ListPost.php index 8c51546f..c3b2bcc9 100644 --- a/demos/blog/protected/Pages/Posts/ListPost.php +++ b/demos/blog/protected/Pages/Posts/ListPost.php @@ -36,6 +36,7 @@ class ListPost extends BlogPage $this->_category=$this->DataAccess->queryCategoryByID($catID);
$this->CategoryPanel->Visible=true;
}
+ $this->Title=$this->Application->Parameters['SiteTitle'];
}
private function getPageOffset()
|