remove warning in a new row if a 'set' field is not selected
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2001-08-08 Steve Alberty <alberty@neptunlabs.de>
|
||||
* tbl_replace.php3: remove warning in a new row if a 'set' field
|
||||
is not selected
|
||||
|
||||
2001-08-07 Robin Johnson <robbat2@orbis-terrarum.net>
|
||||
* user_details.php3, line 664: fixed '<?echo' to '<?php echo' for XML compatiblity
|
||||
|
||||
|
@@ -131,11 +131,15 @@ else {
|
||||
} else {
|
||||
$f = "field_$key";
|
||||
}
|
||||
if (isset($$f)) {
|
||||
if (get_magic_quotes_gpc()) {
|
||||
$val = "'" . (($$f) ? implode(',', $$f) : '') . "'";
|
||||
} else {
|
||||
$val = "'" . addslashes(($$f) ? implode(',', $$f) : '') . "'";
|
||||
}
|
||||
}
|
||||
else
|
||||
$val = "''";
|
||||
break;
|
||||
default:
|
||||
if (get_magic_quotes_gpc()) {
|
||||
|
Reference in New Issue
Block a user