View difference between Paste ID: 3RbzcEda and WJrmshib
SHOW: | | - or go back to the newest paste.
1
Controller Portion that applies to this issue:
2
3
	if ($web_url_session = $this -> session -> userdata('campaign_user_website')) 
4
        {
5
            $data['web_input'] = $web_url_session;  
6
        }
7
        else 
8
        {
9
            $data['web_input'] = 'http://';     
10
        } 
11
12
	$this -> load -> view($data['customize_view'], $data); 
13
14
My view that applies to this issue:
15
16-
	<input type="text" name="web_address" class="wizardInput urlField" value="<? echo $web_input ?>">
16+
	<input type="text" name="web_address" class="wizardInput urlField" value="<? echo $web_input; ?>">