Changeset 1884662
- Timestamp:
- 05/31/2018 07:57:19 AM (8 years ago)
- Location:
- basticom-framework
- Files:
-
- 4 edited
- 13 copied
-
tags/1.4.8 (copied) (copied from basticom-framework/trunk)
-
tags/1.4.8/admin/basticom-framework-functions.php (copied) (copied from basticom-framework/trunk/admin/basticom-framework-functions.php)
-
tags/1.4.8/admin/modules/bstcmfw-cookie.php (copied) (copied from basticom-framework/trunk/admin/modules/bstcmfw-cookie.php) (2 diffs)
-
tags/1.4.8/admin/modules/bstcmfw-gfanonymize.php (copied) (copied from basticom-framework/trunk/admin/modules/bstcmfw-gfanonymize.php)
-
tags/1.4.8/admin/modules/bstcmfw-gfremove-submission.php (copied) (copied from basticom-framework/trunk/admin/modules/bstcmfw-gfremove-submission.php)
-
tags/1.4.8/admin/modules/includes (copied) (copied from basticom-framework/trunk/admin/modules/includes)
-
tags/1.4.8/admin/modules/includes/bstcmfw-cookie.css (copied) (copied from basticom-framework/trunk/admin/modules/includes/bstcmfw-cookie.css) (1 diff)
-
tags/1.4.8/admin/modules/includes/bstcmfw-cookie.js (copied) (copied from basticom-framework/trunk/admin/modules/includes/bstcmfw-cookie.js)
-
tags/1.4.8/admin/modules/templates (copied) (copied from basticom-framework/trunk/admin/modules/templates)
-
tags/1.4.8/admin/modules/templates/bstcmfw-embed-consent.php (copied) (copied from basticom-framework/trunk/admin/modules/templates/bstcmfw-embed-consent.php)
-
tags/1.4.8/basticom-framework.php (copied) (copied from basticom-framework/trunk/basticom-framework.php) (1 diff)
-
tags/1.4.8/languages (copied) (copied from basticom-framework/trunk/languages)
-
tags/1.4.8/readme.txt (copied) (copied from basticom-framework/trunk/readme.txt) (1 diff)
-
trunk/admin/modules/bstcmfw-cookie.php (modified) (2 diffs)
-
trunk/admin/modules/includes/bstcmfw-cookie.css (modified) (1 diff)
-
trunk/basticom-framework.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
basticom-framework/tags/1.4.8/admin/modules/bstcmfw-cookie.php
r1883427 r1884662 70 70 // Include CSS and JS file 71 71 wp_enqueue_style( 'bstcmfw-cookie-style', plugin_dir_url( __FILE__ ) . '/includes/bstcmfw-cookie.css' ); 72 wp_enqueue_script( 'bstcmfw-cookie-script', plugin_dir_url( __FILE__ ) . '/includes/bstcmfw-cookie.js' );72 wp_enqueue_script( 'bstcmfw-cookie-script', plugin_dir_url( __FILE__ ) . '/includes/bstcmfw-cookie.js', array('jquery') ); 73 73 74 74 if ( is_admin() ) { … … 99 99 100 100 // Check if cookie lang has been posted 101 // If cookie_lang is empty set cookie lang to: nl101 // If cookie_lang is empty, set cookie_lang to default site language 102 102 if( isset( $_POST['cookie_lang'] ) ) { 103 103 $bstcmfw_cookie_lang = $_POST['cookie_lang']; 104 104 } else { 105 $bstcmfw_cookie_lang = 'nl';105 $bstcmfw_cookie_lang = get_bloginfo('language'); 106 106 } 107 107 -
basticom-framework/tags/1.4.8/admin/modules/includes/bstcmfw-cookie.css
r1880716 r1884662 9 9 text-align: center; 10 10 z-index: 2147483647; 11 padding: 20px ;11 padding: 20px 0; 12 12 border-radius: 2px; 13 13 display: none; -
basticom-framework/tags/1.4.8/basticom-framework.php
r1883427 r1884662 4 4 Plugin URI: https://www.basticom.nl 5 5 Description: WordPress framework 6 Version: 1.4. 76 Version: 1.4.8 7 7 Author: Basticom 8 8 Author URI: http://www.basticom.nl -
basticom-framework/tags/1.4.8/readme.txt
r1883427 r1884662 75 75 = 1.4.7 = 76 76 * Fixed some checks 77 78 = 1.4.8 = 79 * Fixed front-end cookie style 80 * Fixed jQuery error 81 * Fixed setting language based on site language 82 83 -
basticom-framework/trunk/admin/modules/bstcmfw-cookie.php
r1883427 r1884662 70 70 // Include CSS and JS file 71 71 wp_enqueue_style( 'bstcmfw-cookie-style', plugin_dir_url( __FILE__ ) . '/includes/bstcmfw-cookie.css' ); 72 wp_enqueue_script( 'bstcmfw-cookie-script', plugin_dir_url( __FILE__ ) . '/includes/bstcmfw-cookie.js' );72 wp_enqueue_script( 'bstcmfw-cookie-script', plugin_dir_url( __FILE__ ) . '/includes/bstcmfw-cookie.js', array('jquery') ); 73 73 74 74 if ( is_admin() ) { … … 99 99 100 100 // Check if cookie lang has been posted 101 // If cookie_lang is empty set cookie lang to: nl101 // If cookie_lang is empty, set cookie_lang to default site language 102 102 if( isset( $_POST['cookie_lang'] ) ) { 103 103 $bstcmfw_cookie_lang = $_POST['cookie_lang']; 104 104 } else { 105 $bstcmfw_cookie_lang = 'nl';105 $bstcmfw_cookie_lang = get_bloginfo('language'); 106 106 } 107 107 -
basticom-framework/trunk/admin/modules/includes/bstcmfw-cookie.css
r1880716 r1884662 9 9 text-align: center; 10 10 z-index: 2147483647; 11 padding: 20px ;11 padding: 20px 0; 12 12 border-radius: 2px; 13 13 display: none; -
basticom-framework/trunk/basticom-framework.php
r1883427 r1884662 4 4 Plugin URI: https://www.basticom.nl 5 5 Description: WordPress framework 6 Version: 1.4. 76 Version: 1.4.8 7 7 Author: Basticom 8 8 Author URI: http://www.basticom.nl -
basticom-framework/trunk/readme.txt
r1883427 r1884662 75 75 = 1.4.7 = 76 76 * Fixed some checks 77 78 = 1.4.8 = 79 * Fixed front-end cookie style 80 * Fixed jQuery error 81 * Fixed setting language based on site language 82 83
Note: See TracChangeset
for help on using the changeset viewer.