diff options
author | Roger Szabo <roger.szabo@web.de> | 2018-04-25 15:54:33 +0800 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-05-29 16:40:50 +0200 |
commit | 49c1a7f2ae706417c7a7312c74b67cd88b05fb79 (patch) | |
tree | 638401903efdd6844453d855cb943d126ad2c617 /apps | |
parent | b3b774dfc533d0edc2bbca517157af95cbe6b032 (diff) | |
download | nextcloud-server-49c1a7f2ae706417c7a7312c74b67cd88b05fb79.tar.gz nextcloud-server-49c1a7f2ae706417c7a7312c74b67cd88b05fb79.zip |
Remove unneeded semicolon and parentheses
Signed-off-by: Roger Szabo <roger.szabo@web.de>
Diffstat (limited to 'apps')
-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> |