* convert private to protected.
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user