fixed PHP notice
This commit is contained in:
parent
7558be0e90
commit
afb8d6ebdd
|
@ -2671,7 +2671,7 @@ class posixAccount extends baseModule implements passwordService {
|
||||||
for ($i = 0; $i < sizeof($wildcards[0]); $i++) {
|
for ($i = 0; $i < sizeof($wildcards[0]); $i++) {
|
||||||
$wc = substr($wildcards[0][$i], 1, strlen($wildcards[0][$i]) - 2);
|
$wc = substr($wildcards[0][$i], 1, strlen($wildcards[0][$i]) - 2);
|
||||||
$value = '';
|
$value = '';
|
||||||
if (isset($attributes[$wc][0])) {
|
if (isset($attributes[$wc][0]) && !empty($attributes[$wc][0])) {
|
||||||
$value = $attributes[$wc][0][0];
|
$value = $attributes[$wc][0][0];
|
||||||
}
|
}
|
||||||
$format = str_replace('@' . $wc . '@', $value, $format);
|
$format = str_replace('@' . $wc . '@', $value, $format);
|
||||||
|
|
Loading…
Reference in New Issue