Closed (fixed)
Project:
Profile2 Registration Path
Version:
7.x-1.8
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 May 2012 at 06:39 UTC
Updated:
17 May 2012 at 17:20 UTC
Jump to comment: Most recent file
Comments
Comment #1
grasmash commentedthanks! fixed and pushed to dev.
Comment #2
binabot commentedthanks very much ! fixed it !
just change :
// Attach custom confirmation message to form for later display.
if ($misc['confirmation_display']) {
$_SESSION['profile2_regpath']['confirmation_message'] = $misc['confirmation_message'];
to :
// Attach custom confirmation message to form for later display.
if (!empty($misc['confirmation_display'])) {
$_SESSION['profile2_regpath']['confirmation_message'] = $misc['confirmation_message'];
Comment #3
joelpittetWell seems someone wants to take a direction there, I will go with it, here's the patch of LIJIAN code.
Comment #4
joelpittetComment #5
joelpittetsorry, I should really read and so should LIJIAN, you already went with isset. Back to fixed!