Fix: Fix regression after removing pre.inc.php

This commit is contained in:
Laurent Destailleur 2010-03-16 01:18:25 +00:00
parent 3c9f50d34a
commit d38f72f50a

View File

@ -1227,8 +1227,10 @@ function printSearchForm($urlaction,$urlobject,$title,$htmlmodesearch='search',$
* \remarks Close 2 div * \remarks Close 2 div
* \param foot A text to add in HTML generated page * \param foot A text to add in HTML generated page
*/ */
function llxFooter($foot='') if (! function_exists("llxFooter"))
{ {
function llxFooter($foot='')
{
global $conf, $dolibarr_auto_user, $micro_start_time; global $conf, $dolibarr_auto_user, $micro_start_time;
print "\n\n".'</div> <!-- end div class="fiche" -->'."\n"; print "\n\n".'</div> <!-- end div class="fiche" -->'."\n";
@ -1286,6 +1288,7 @@ function llxFooter($foot='')
print "</body>\n"; print "</body>\n";
print "</html>\n"; print "</html>\n";
}
} }
?> ?>