Subversion Repositories wpShopGermany4

Rev

Rev 8244 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8244 Rev 8264
Line 11... Line 11...
11
        '-1' => __('günstigste Versandart', 'wpsg'),
11
        '-1' => __('günstigste Versandart', 'wpsg'),
12
    ]; 
12
    ]; 
13
    
13
    
14
    foreach ($arShipping as $s_key => $s) {
14
    foreach ($arShipping as $s_key => $s) {
15
        
15
        
16
        if (intval($s['deleted']) !== 1 && intval($s['active']) === 1) {
16
        if (intval($s['deleted']??'') !== 1 && intval($s['active']??'') === 1) {
17
        
17
        
18
            $arShippingPreset[$s_key] = $s['name'];
18
            $arShippingPreset[$s_key] = $s['name'];
19
 
19
 
20
        }
20
        }
21
        
21