Plugin Directory

Changeset 1563632


Ignore:
Timestamp:
12/28/2016 05:38:32 PM (9 years ago)
Author:
ardsoft
Message:

Version 1.1.1

Location:
dml-easy-map/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • dml-easy-map/trunk/dmlmap.php

    r1559950 r1563632  
    55Plugin URI: https://wordpress.org/plugins/dml-easy-map/
    66Description: DML easy map lets you integrate easily a Google Map to the wordpress projects. This version lets you pin locations, customize markers and map easily.
    7 Version: 1.1.0
     7Version: 1.1.1
    88Author: Ozkan ARDIL
    99Author URI: http://googlemap.webmountain.net/index.php
     
    379379    $dml_field2 = sanitize_text_field( $_POST['dml_field2'] ); // Field2 name for update query
    380380    $dml_value2 = sanitize_text_field( $_POST['dml_value2'] ); // Lng data
    381    
    382     if ( isset( $dml_page_link ) && isset( $dml_post_id ) && isset( $dml_field1 ) && isset( $dml_value1 ) && isset( $dml_field2 ) && isset( $dml_value2 ) ) {
     381    $dml_field_num = absint( $_POST['dml_field_num'] );
     382
     383    if ( isset( $dml_page_link ) && isset( $dml_post_id ) && isset( $dml_field1 ) && isset( $dml_value1 ) && isset( $dml_field2 ) && isset( $dml_value2 ) && isset( $dml_field_num ) ) {
    383384        try {
    384385            $centerData = array(
     
    388389                'dml_field2' => $dml_field2,
    389390                'dml_value2' => $dml_value2,
     391                'dml_field_num' => $dml_field_num,
    390392            );
    391393           
  • dml-easy-map/trunk/readme.txt

    r1559950 r1563632  
    55Requires at least: 4.6
    66Tested up to: 4.6.1
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1515Add a customized Google map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No iFrames and super easy to use! Perfect for contact page maps, routes, maps showing delivery areas and any other use you can think of!
    1616
    17 Features :
    18 
     17= Features =
    1918*   Place Google map on a page / post with shortcode,
    2019*   Responsive design,
     
    2524*   Customizable map zoom feature,
    2625*   Customizable map height,
    27 *   Marker cluster.
     26*   Marker cluster,
     27
     28= Pro Version Features =
     29*   Add multiple lines on the same map,
     30*   Change line color with just one click,
     31*   Draw multiple polygons,
     32*   Change polygon fill color according to your needs,
     33*   Change polygon border color,
     34*   Add descripiton for each polygon,
     35
     36[Demo Page](http://googlemap.webmountain.net/index.php)
    2837
    2938
     
    8998== Upgrade Notice ==
    9099
     100= 1.1.1 =
     101* Fıxed: Bug where center map function
     102
    91103= 1.1.0 =
    92 * New - Marker cluster
     104* Added: Marker cluster
    93105
    94106= 1.0 =
    95 First release
     107* First release
    96108
    97109== Arbitrary section ==
Note: See TracChangeset for help on using the changeset viewer.