• Resolved heyiamluke

    (@heyiamluke)


    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)
  • Plugin Author Majeed Raza

    (@lorro)

    Thank you for alerting me to this problem. I decided to fix it in v1.4 by using urlencode() to transfer column names across the page action.

    Plugin Author Majeed Raza

    (@lorro)

    The issue has been addressed by the latest update, so I’m marking this thread as resolved.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Columns with Spaces’ is closed to new replies.