remove unused variable

This commit is contained in:
Claude 2019-11-24 11:40:34 +01:00
parent dbc31ac77e
commit c687068fd4

View File

@ -348,7 +348,7 @@ class Pastes extends CI_Model
// Prepare CURL options array // Prepare CURL options array
$prep_data = array( $prep_data = array(
CURLOPT_URL => $target = $gwgd_url . 'api.php?long=' . $url, CURLOPT_URL => $gwgd_url . 'api.php?long=' . $url,
CURLOPT_RETURNTRANSFER => true, CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => 'identity' CURLOPT_ENCODING => 'identity'
); );
@ -463,7 +463,7 @@ class Pastes extends CI_Model
// Prepare CURL options array // Prepare CURL options array
$prep_data = array( $prep_data = array(
CURLOPT_URL => $target = $gwgd_url . 'api.php?long=' . $url, CURLOPT_URL => $gwgd_url . 'api.php?long=' . $url,
CURLOPT_RETURNTRANSFER => true, CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => 'identity' CURLOPT_ENCODING => 'identity'
); );