Plugin Directory

Changeset 2531643


Ignore:
Timestamp:
05/14/2021 10:39:06 AM (5 years ago)
Author:
DaganLev
Message:

version 1.3 core updates made

Location:
hotscot-contact-form
Files:
41 added
3 edited

Legend:

Unmodified
Added
Removed
  • hotscot-contact-form/trunk/README.txt

    r1172843 r2531643  
    55Requires at least: 3.4.2
    66Tested up to: 4.2.1
    7 Stable tag: 1.2
     7Stable tag: 1.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3232
    3333== Changelog ==
     34
     35= 1.3 =
     36* Core updates
    3437
    3538= 1.2 =
  • hotscot-contact-form/trunk/admin/submission-view.php

    r666876 r2531643  
    55    $url = $baseurl . '&sub_id=' . $_GET['sub_id'];
    66
    7     $submission = $wpdb->get_row("SELECT * FROM " . $wpdb->prefix . HCF_SUBMISSION_TABLE_NAME . " WHERE id = " . $_GET['sub_id']);
     7    if(!isset($_GET['sub_id']) || !is_numeric($_GET['sub_id']))
     8        exit("Error");
     9
     10    $submission = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . HCF_SUBMISSION_TABLE_NAME . " WHERE id = %d"), $_GET['sub_id']);
    811?>
    912<?php if(!$submission) exit("Error"); ?>
  • hotscot-contact-form/trunk/hotscot-contact-form.php

    r1172843 r2531643  
    44Plugin URI: http://wordpress.org/extend/plugins/hotscot-contact-form/
    55Description: Simple to use contact form
    6 Version: 1.2
     6Version: 1.3
    77Author: Hotscot
    88Author URI: http://www.hotscot.net/
Note: See TracChangeset for help on using the changeset viewer.