Plugin Directory

Changeset 3128135


Ignore:
Timestamp:
07/30/2024 12:37:33 PM (20 months ago)
Author:
lordspace
Message:

Maintenance release and Tested with WP 6.5 and preparing for v1.5.5

Location:
orbisius-child-theme-creator/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • orbisius-child-theme-creator/trunk/index.html

    r2858385 r3128135  
    77<body>
    88    <div>You have accessed an Orbisius plugin directory</div>
    9     <a href='https://orbisius.com' target="_blank" title="Custom Web and WordPress Development, SaaS Apps, e-commerce, e-store, Wordpress Plugin Development from Ontario, Canada">Orbisius - Custom WordPress, Plugin and SaaS App Development</a>
     9    <a href='https://orbisius.com/?utm_source=client_site&utm_medium=holder_index' target="_blank" title="Custom Web and WordPress Development, SaaS Apps, e-commerce, e-store, Wordpress Plugin Development from Ontario, Canada">Orbisius - Custom WordPress, Plugin and SaaS App Development</a>
    1010</body>
    1111</html>
  • orbisius-child-theme-creator/trunk/orbisius-child-theme-creator.php

    r2858384 r3128135  
    44  Plugin URI: https://orbisius.com/products/wordpress-plugins/orbisius-child-theme-creator/
    55  Description: This plugin allows you to quickly create child themes from any theme that you have currently installed on your site/blog.
    6   Version: 1.5.4
     6  Version: 1.5.5
    77  Author: Svetoslav Marinov (Slavi)
    88  Author URI: https://orbisius.com
     
    933933        $parent_theme_base_dirname_fmt = urlencode($theme_basedir_name);
    934934        $create_url = $_SERVER['REQUEST_URI'];
     935        $create_url = orbisius_child_theme_creator_util::sanitize_data($create_url);
     936        $create_url = esc_url($create_url);
    935937
    936938        // cleanup old links or refreshes.
    937         $create_url = preg_replace('#&parent_theme_base_dirname=[\w-]+#si', '', $create_url);
    938         $create_url = preg_replace('#&orbisius_child_theme_creator_nonce=[\w-]+#si', '', $create_url);
     939        if (strpos($create_url, '&parent_theme_base_dirname=') !== false) {
     940            $create_url = preg_replace('#&parent_theme_base_dirname=[\w\-]+#si', '', $create_url);
     941        }
     942
     943        if (strpos($create_url, '&orbisius_child_theme_creator_nonce=') !== false) {
     944            $create_url = preg_replace('#&orbisius_child_theme_creator_nonce=[\w\-]+#si', '', $create_url);
     945        }
    939946
    940947        $create_url .= '&parent_theme_base_dirname=' . $parent_theme_base_dirname_fmt;
  • orbisius-child-theme-creator/trunk/readme.txt

    r2721095 r3128135  
    44Tags: theme,child theme,childtheme,childthemes,parent theme,child themes,CSS,styling,resposive design,design,custom themeing, shared hosting,theme editor theme,themes,wp,wordpress,orbisius,theme creator,custom theme,theme generator,css,css editor
    55Requires at least: 3.4
    6 Tested up to: 5.9
     6Tested up to: 6.5
    77Requires PHP: 5.6
    8 Stable tag: 1.5.4
     8Stable tag: 1.5.5
    99License: GPLv2 or later
    1010
     
    171171== Changelog ==
    172172
     173= 1.5.5 =
     174* Maintenance release
     175* Tested with WP 6.5
     176
    173177= 1.5.4 =
    174178* Tested with WP 5.9
Note: See TracChangeset for help on using the changeset viewer.