Changeset 2938140
- Timestamp:
- 07/13/2023 10:57:51 AM (3 years ago)
- Location:
- jomres/trunk
- Files:
-
- 2 edited
-
includes/jomres.php (modified) (1 diff)
-
jomres.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jomres/trunk/includes/jomres.php
r2818817 r2938140 307 307 if (! empty($this->css)) { 308 308 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']); 319 310 wp_enqueue_style($css_filename); 320 311 } -
jomres/trunk/jomres.php
r2923885 r2938140 17 17 * Plugin URI: https://www.jomres.net 18 18 * Description: The complete online booking and property management solution for WordPress. 19 * Version: 10.7. 119 * Version: 10.7.2 20 20 * Author: Vince Wooll <support@jomres.net> 21 21 * Author URI: https://www.jomres.net … … 35 35 */ 36 36 if (! defined('JOMRES_WP_PLUGIN_VERSION')) { 37 define('JOMRES_WP_PLUGIN_VERSION', '10.7. 1');37 define('JOMRES_WP_PLUGIN_VERSION', '10.7.2'); 38 38 } 39 39 … … 112 112 113 113 //get the latest jomres version download url 114 $url = 'http://updates.jomres 4.net/getlatest.php?includebeta=true';115 $nightly_url = 'http://updates.jomres 4.net/nightly/';114 $url = 'http://updates.jomres.net/getlatest.php?includebeta=true'; 115 $nightly_url = 'http://updates.jomres.net/nightly/'; 116 116 117 117 $nightly = false;
Note: See TracChangeset
for help on using the changeset viewer.