# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Apply Diff Patch action on respective folder. # It uses platform neutral UTF-8 encoding. # Above lines and this line are ignored by the patching process. --- modules/mod_cblogin/mod_cblogin.php +++ modules/mod_cblogin/mod_cblogin.php @@ -460,7 +460,8 @@ $pluginsResults = $_PLUGINS->trigger( 'onAfterLogoutForm', array( $name_lenght, $pass_lenght, $horizontal, $class_sfx, &$params ) ); if ( implode( $pluginsResults ) != '' ) { $divHtml = ( $horizontal ? '' : '
' ); - echo $divHtml . implode( '
' . $divHtml, $pluginsResults ) . ''; + $divHtmlEnd = ( $horizontal ? '
' : '' ); + echo $divHtml . implode( $divHtmlEnd . $divHtml, $pluginsResults ) . $divHtmlEnd; } }