Show
Ignore:
Timestamp:
02/19/12 20:59:22 (16 months ago)
Author:
plg
Message:

convert tabulations into 2-spaces for indentation (introduced in r13240)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/include/functions.inc.php

    r13242 r13258  
    891891  global $lang, $conf; 
    892892 
    893         if ( ($val=@$lang[$key]) == null) 
    894         { 
    895                 if ($conf['debug_l10n'] and !isset($lang[$key]) and !empty($key)) 
    896                 { 
    897                         trigger_error('[l10n] language key "'.$key.'" is not defined', E_USER_WARNING); 
    898                 } 
    899                 $val = $key; 
    900         } 
     893  if ( ($val=@$lang[$key]) == null) 
     894  { 
     895    if ($conf['debug_l10n'] and !isset($lang[$key]) and !empty($key)) 
     896    { 
     897      trigger_error('[l10n] language key "'.$key.'" is not defined', E_USER_WARNING); 
     898    } 
     899    $val = $key; 
     900  } 
    901901  return $val; 
    902902}