diff options
author | Roger Szabo <roger.szabo@web.de> | 2018-04-25 15:54:33 +0800 |
---|---|---|
committer | Roger Szabo <roger.szabo@web.de> | 2018-04-25 15:54:33 +0800 |
commit | aa85418c68d9a051ffa68759ef2e4bfc2e7eff15 (patch) | |
tree | 50345325787c1aa4867c19b8705a3c61ff74d01f /apps/user_ldap | |
parent | cc40917e5e897c72909d1fbb85d8f118d4c74912 (diff) | |
download | nextcloud-server-aa85418c68d9a051ffa68759ef2e4bfc2e7eff15.tar.gz nextcloud-server-aa85418c68d9a051ffa68759ef2e4bfc2e7eff15.zip |
Remove unneeded semicolon and parentheses
Signed-off-by: Roger Szabo <roger.szabo@web.de>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r-- | apps/user_ldap/templates/renewpassword.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/templates/renewpassword.php b/apps/user_ldap/templates/renewpassword.php index 78346788399..12b1d7fc045 100644 --- a/apps/user_ldap/templates/renewpassword.php +++ b/apps/user_ldap/templates/renewpassword.php @@ -23,7 +23,7 @@ style('user_ldap', 'renewPassword'); <?php p($message); ?><br> </div> <?php endforeach; ?> - <?php if (isset($_['internalexception']) && ($_['internalexception'])): ?> + <?php if (isset($_['internalexception']) && $_['internalexception']): ?> <div class="warning"> <?php p($l->t('An internal error occurred.')); ?><br> <small><?php p($l->t('Please try again or contact your administrator.')); ?></small> |