Plugin Directory

Changeset 2471396


Ignore:
Timestamp:
02/09/2021 08:16:53 AM (5 years ago)
Author:
prosolution
Message:

1.7.5

  • Fixed default office setting's selected option set to actual value
  • Fixed privacy policy setting policy 1 and ppvc_date always set to mandatory
  • Fixed privacy policy setting's activate based on selected site in application form
Location:
prosolution-wp-client/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • prosolution-wp-client/trunk/README.txt

    r2466943 r2471396  
    66Tested up to: 4.9.5
    77Requires PHP: 5.6
    8 Stable tag: 1.7.4
     8Stable tag: 1.7.5
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6666
    6767== Changelog ==
     68
     69= 1.7.5 =
     70* Fixed default office setting's selected option set to actual value
     71* Fixed privacy policy setting policy 1 and ppvc_date always set to mandatory
     72* Fixed privacy policy setting's activate based on selected site in application form
    6873
    6974= 1.7.4 =
  • prosolution-wp-client/trunk/admin/class-prosolwpclient-admin.php

    r2464169 r2471396  
    185185            $is_api_setup = CBXProSolWpClient_Helper::proSol_isApiSetup($issite);
    186186            $api_config   = CBXProSolWpClient_Helper::proSol_getApiConfig($issite);
    187            
     187
    188188            if ( $page_name == 'prosolutionoverview' && $task == 'syncall' && $is_api_setup ) {
    189189                $this->proSol_allTableSync(); //after done redirect or die from ajax
  • prosolution-wp-client/trunk/admin/js/prosolwpclient-setting.js

    r2460136 r2471396  
    165165        if(defselsite == ''){
    166166            $('select#selsite option\[value=0\]').attr('selected','selected');
     167            defselsite=0;
     168            document.cookie = "selsite="+defselsite;           
    167169        }else{
    168170            $('select#selsite option\[value='+defselsite+'\]').attr('selected','selected');
  • prosolution-wp-client/trunk/includes/class-setting.php

    r2454627 r2471396  
    155155                    }
    156156                    add_settings_section( $section['id'], $section['title'], $callback, $section['id'] );
    157                 }
    158                
     157                }               
    159158               
    160159                //register settings fields
     
    845844               
    846845                foreach ( $args['options'] as $key => $label ) {
    847                     if(in_array($args['id'],$selectlist)){
     846                    if($value=='' && $isrec[$issite.'enable_recruitment'] == 'on'){
    848847                        $def_select= $key=='1' ? 'selected' : '';
    849848                        $html .= sprintf( '<option value="%s"%s>%s</option>', $key, $def_select, $label );
  • prosolution-wp-client/trunk/prosolwpclient.php

    r2466943 r2471396  
    1717     * Plugin URI:        https://prosolution.com/produkte-und-services/workexpert.html
    1818     * Description:       WordPress client for ProSolution
    19      * Version:           1.7.4
     19     * Version:           1.7.5
    2020     * Author:            ProSolution
    2121     * Author URI:        https://www.prosolution.com
     
    3939
    4040    defined('PROSOLWPCLIENT_PLUGIN_NAME') or define('PROSOLWPCLIENT_PLUGIN_NAME', 'prosolwpclient');
    41     defined('PROSOLWPCLIENT_PLUGIN_VERSION') or define('PROSOLWPCLIENT_PLUGIN_VERSION', '1.7.4');
     41    defined('PROSOLWPCLIENT_PLUGIN_VERSION') or define('PROSOLWPCLIENT_PLUGIN_VERSION', '1.7.5');
    4242    defined('PROSOLWPCLIENT_BASE_NAME') or define('PROSOLWPCLIENT_BASE_NAME', plugin_basename(__FILE__));
    4343    defined('PROSOLWPCLIENT_ROOT_PATH') or define('PROSOLWPCLIENT_ROOT_PATH', plugin_dir_path(__FILE__));
  • prosolution-wp-client/trunk/public/class-prosolwpclient-public.php

    r2466943 r2471396  
    869869                    $default_office = $genset[$issite.'default_office'];
    870870                }
     871                 
    871872                //for recruitment additional fields
    872873                if ( $genset[$issite.'enable_recruitment'] == 'on' ) {
Note: See TracChangeset for help on using the changeset viewer.