Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi tmm2012,
    ?
    Thank you for contact us and for the report.
    ?
    I’m making a few tests and will provide a fix for you as soon as possible.

    ?Kind regards

    Thread Starter tmm2012

    (@tmm2012)

    I fixed it manually like:

    private static function sanitizeUrlData($data)
        {
    		if(is_object($data)) {
    			$attributes = get_object_vars($data);
    
    			foreach ($attributes as $key => $value) {
    				if (substr_count($key, '-')) {
    					unset($data->$key);
    					
    					$key = str_replace('-', '_', $key);
    					$data->$key = $value;
    				}
    			}
    		}
    
            return $data;
        }

    Hi,

    I just fixed and released 1.6.3 addressing it.

    Please, let us know if you need any further assistance.

    Thanks,

    • This reply was modified 7 years, 11 months ago by PressShack.

    I’m closing this topic, but feel free to contact us via [email protected].

    Kind regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘A warning is displayed on page when activate EmbedPress’ is closed to new replies.