fixed return value

This commit is contained in:
Roland Gruber 2017-05-06 15:21:37 +02:00
parent 09bd0720d5
commit b886074693
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
$Id$ $Id$
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2010 - 2016 Roland Gruber Copyright (C) 2010 - 2017 Roland Gruber
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -2896,7 +2896,7 @@ class htmlContentLink extends htmlLink {
parseHtml($module, $this->content, $values, $restricted, $tabindex, $scope); parseHtml($module, $this->content, $values, $restricted, $tabindex, $scope);
$this->contentText = ob_get_contents(); $this->contentText = ob_get_contents();
ob_end_clean(); ob_end_clean();
parent::generateHTML($module, $input, $values, $restricted, $tabindex, $scope); return parent::generateHTML($module, $input, $values, $restricted, $tabindex, $scope);
} }
/** /**