Plugin Directory

Changeset 2938140


Ignore:
Timestamp:
07/13/2023 10:57:51 AM (3 years ago)
Author:
jomres
Message:

Jomres 10.7.2 released

Location:
jomres/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • jomres/trunk/includes/jomres.php

    r2818817 r2938140  
    307307        if (! empty($this->css)) {
    308308            foreach ($this->css as $css_filename => $css) {
    309                 if(is_admin()) {
    310                     $css_dep = $css['1'];
    311                 } else {
    312                     if ( jomres_bootstrap_version() == "5") {
    313                         $css_dep =  array('bootstrap_css');
    314                     } else {
    315                         $css_dep = $css['1'];
    316                     }
    317                 }
    318                 wp_register_style( $css_filename, $css['0'], $css_dep , $css['1'], 'all' );
     309                wp_register_style( $css_filename, $css['0']);
    319310                wp_enqueue_style($css_filename);
    320311            }
  • jomres/trunk/jomres.php

    r2923885 r2938140  
    1717     * Plugin URI:      https://www.jomres.net
    1818     * Description:    The complete online booking and property management solution for WordPress.
    19      * Version:        10.7.1
     19     * Version:        10.7.2
    2020     * Author:          Vince Wooll <support@jomres.net>
    2121     * Author URI:      https://www.jomres.net
     
    3535     */
    3636if (! defined('JOMRES_WP_PLUGIN_VERSION')) {
    37     define('JOMRES_WP_PLUGIN_VERSION', '10.7.1');
     37    define('JOMRES_WP_PLUGIN_VERSION', '10.7.2');
    3838}
    3939
     
    112112
    113113        //get the latest jomres version download url
    114         $url = 'http://updates.jomres4.net/getlatest.php?includebeta=true';
    115         $nightly_url = 'http://updates.jomres4.net/nightly/';
     114        $url = 'http://updates.jomres.net/getlatest.php?includebeta=true';
     115        $nightly_url = 'http://updates.jomres.net/nightly/';
    116116
    117117        $nightly = false;
Note: See TracChangeset for help on using the changeset viewer.