mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-01-01 14:45:05 +01:00
avoid unnecessary indentation
This commit is contained in:
parent
333f0568b6
commit
5aa7a95841
1 changed files with 2 additions and 4 deletions
|
@ -134,11 +134,9 @@ class I18n
|
||||||
if (strpos($args[0], '<a') !== false || strpos($args[0], '<kbd>') !== false) {
|
if (strpos($args[0], '<a') !== false || strpos($args[0], '<kbd>') !== false) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
} else {
|
} elseif (is_int($args[$i])) {
|
||||||
if (is_int($args[$i])) {
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
$args[$i] = self::encode($args[$i]);
|
$args[$i] = self::encode($args[$i]);
|
||||||
}
|
}
|
||||||
return call_user_func_array('sprintf', $args);
|
return call_user_func_array('sprintf', $args);
|
||||||
|
|
Loading…
Reference in a new issue