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