Commit 69bbbc29 by Muhammad Usman

small mod

parent 8999461f
Pipeline #303 passed with stage
in 0 seconds
......@@ -42,6 +42,7 @@ function use_lms_template($data)
return __DIR__ . '/template/pricing-request.php';
}
else if(is_page('lms-notify')) {
$id = $_GET['order_id'];
$content = get_the_content($id);
......
......@@ -2,6 +2,6 @@
$order_id = $_GET['order_id'];
update_post_meta($order_id, 'order_redirection_data_get', $_GET);
update_post_meta($order_id, 'order_redirection_data_post', $_POST);
update_post_meta($order_id, 'order_redirection_data_get', json_encode($_GET));
update_post_meta($order_id, 'order_redirection_data_post', json_encode($_POST));
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment