Columns with Spaces
-
Columns with Space don’t update.
The below fixes the problem
foreach ( $this->columns as $name => $type ) { if ($name == trim($name) && strpos($name, ' ') !== false) { $spaceName=preg_replace('/\s+/', '_', $name); $update_vals[$name] = stripslashes_deep( $vals[$spaceName] ); } else { $update_vals[$name] = stripslashes_deep( $vals[$name] ); }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Columns with Spaces’ is closed to new replies.