Plugin Directory

Changeset 2694710


Ignore:
Timestamp:
03/16/2022 09:40:32 AM (4 years ago)
Author:
platformlycom
Message:

fixed notice: Minor fixes

Location:
platformly/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • platformly/trunk/inc/ply.functions.php

    r2585949 r2694710  
    405405    if(!empty($ply_plugin_cid)){
    406406        if($slug !== null){
     407            $slug = rtrim($slug, '/');
    407408            $sql = $wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "ply_pages WHERE ply_cid = %d AND ply_page_type = %s AND ply_page_slug = %s AND ply_page_status = 'active'", array($ply_plugin_cid, $type, $slug));
    408409        } else{
     
    522523    global $wpdb;
    523524    $plyPage = $wpdb->get_row($wpdb->prepare("SELECT id FROM {$wpdb->posts} WHERE post_type = %s AND post_name = %s", array('ply_page', $pageSlug)));
    524     wp_delete_post($plyPage->id, true);
    525 }
     525    if($plyPage){
     526        wp_delete_post($plyPage->id, true);
     527    }
     528}
  • platformly/trunk/platformly.php

    r2610279 r2694710  
    44Plugin Name: Platform.ly Official
    55Description: Platform.ly plugin is the easiest way to setup your optins and pages that your created with Platform.ly. After building your optin or page with our interactive WYSIWYG builders, you can set them up to show on your site with just a couple of clicks.
    6 Version: 1.11
     6Version: 1.12
    77Author: Platform.ly
    88Author URI: https://www.platform.ly/
  • platformly/trunk/readme.txt

    r2610279 r2694710  
    33Tags: CRM, ecommerce, custom pages, landing pages, optin forms, events, tracking links, platform.ly, platform, platformly
    44Requires at least: 4.6
    5 Tested up to: 5.8
     5Tested up to: 5.9
    66Requires PHP: 5.5.9
    77Stable tag: trunk
     
    7878== Upgrade Notice ==
    7979
     80= 1.12 =
     81- Minor fixes
     82
    8083= 1.11 =
    8184- Fixed the 404 Page not found error for pages
Note: See TracChangeset for help on using the changeset viewer.