ChronoForms v4 RC 1.7 bug-fixes

GreyHead 27 Mar, 2011
Hi,

[list=a]
  • There's a bug in the Email Verification Sender Action: description and fix are in this post

  • Notice: Undefined index: action in R:\xampp\htdocs\joomla1.5k\administrator\components\com_chronoforms\form_actions\email_verification_response\email_verification_response.php on line 19


    Fix is to replace this code
    		//save the data to db
    		if ( $_GET['action'] == 'verify' ) {
    			if(isset($_GET['hash']) && !empty($_GET['hash'])){
    with this around line 18
    		//save the data to db
    		$action =& JRequest::getString('action', '', 'get');
    		if ( $action == 'verify' ) {
    			$hash = & JRequest::getString('hash', '', 'get');
    			if( $hash ){

  • There's a Params Fatal error that is fixed in this post

  • There's a bug in the Menu installer. See here for the fix.

  • There's an Email error that refers to _remove.

    Fatal error: Call to undefined method CfactionEmail::_remove() in /home/content/b/u/e/buenavista77/html/libraries/joomla/filter/filterinput.php on line 172


    Fix is here
  • [/list:o]

    Bob
    This topic is locked and no more replies can be posted.