Project

General

Profile

« Previous | Next » 

Revision 307

Added by stefan over 18 years ago

Solved ticket #127, commas are now stored as htmlentity in database. Also changed wb_mail to mail in form/view.php.

View differences:

save_field.php
61 61
	$values = array();
62 62
	for($i = 1; $i <= $list_count; $i++) {
63 63
		if($admin->get_post('value'.$i) != '') {
64
			$values[] = $admin->get_post('value'.$i);
64
			$values[] = str_replace(",","&#44;",$admin->get_post('value'.$i));
65 65
		}
66 66
	}
67 67
	$value = implode(',', $values);
......
101 101
// Print admin footer
102 102
$admin->print_footer();
103 103

  
104
?>
104
?>

Also available in: Unified diff