X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCampaign%2FForm%2FTask.php;h=be6cfefe4a94bf8e17b5e7a591f9f39bb50ee8e2;hb=c70fe6df65806594654d845249a7ad9152e3cac0;hp=bdf9f8324a424cb6b4012d6399483f741c960cca;hpb=9d0857e01495c77accb2c7a2ee34ec4573261b24;p=civicrm-core.git diff --git a/CRM/Campaign/Form/Task.php b/CRM/Campaign/Form/Task.php index bdf9f8324a..be6cfefe4a 100755 --- a/CRM/Campaign/Form/Task.php +++ b/CRM/Campaign/Form/Task.php @@ -1,7 +1,7 @@ controller->exportValues('Search'); $this->_task = $values['task']; @@ -132,20 +132,17 @@ class CRM_Campaign_Form_Task extends CRM_Core_Form { } /** - * simple shell that derived classes can call to add buttons to + * Simple shell that derived classes can call to add buttons to * the form with a customized title for the main Submit * * @param string $title title of the main button - * @param string $nextType + * @param string $nextType button type for the form after processing * @param string $backType * @param bool $submitOnce * - * @internal param string $type button type for the form after processing - * * @return void - * @access public */ - function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) { + public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) { $this->addButtons(array( array( 'type' => $nextType, @@ -160,4 +157,3 @@ class CRM_Campaign_Form_Task extends CRM_Core_Form { ); } } -