* convert private to protected.

This commit is contained in:
wangchunsheng
2011-02-17 13:58:21 +00:00
parent 9758bb7486
commit d12a963eed
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -70,10 +70,10 @@ class story extends control
* The common action when edit or change a story.
*
* @param int $storyID
* @access private
* @access protected
* @return void
*/
private function commonAction($storyID)
protected function commonAction($storyID)
{
/* Get datas. */
$story = $this->story->getById($storyID);
@@ -410,10 +410,10 @@ class story extends control
*
* @param int $storyID
* @param int $actionID
* @access private
* @access protected
* @return void
*/
private function sendmail($storyID, $actionID)
protected function sendmail($storyID, $actionID)
{
/* Get actions. */
$action = $this->action->getById($actionID);
+2 -2
View File
@@ -649,10 +649,10 @@ class storyModel extends model
* Format stories
*
* @param array $stories
* @access private
* @access protected
* @return void
*/
private function formatStories($stories)
protected function formatStories($stories)
{
/* Get module names of stories. */
/*$modules = array();