Page 1 of 1

Bug in Search page maker: CSS missing?

Posted: 2019-07-01 06:26
by onoehring
Hi,
I notice, that I get two CSS errors in the search page maker - but not in advanced search.
GET https://ecomo.datenbank-projekt.de/reso ... er.min.css net::ERR_ABORTED 404 (Not Found)
ecomo_Container_view.php:209 GET https://ecomo.datenbank-projekt.de/reso ... ent.min.js net::ERR_ABORTED 404 (Not Found)
ecomo_Container_view.php:208 GET https://ecomo.datenbank-projekt.de/reso ... er.min.css net::ERR_ABORTED 404 (Not Found)
ecomo_Container_view.php:209 GET https://ecomo.datenbank-projekt.de/reso ... ent.min.js net::ERR_ABORTED 404 (Not Found)
Message 1 and 3:
Two files exist in /resources/bootstrap-datetimepicker. These files are bootstrap-datetimepicker.min.js and bootstrap-datetimepicker.css
Message 2 and 4:
Only one file exists in /resources/moment .... that file is: moment-with-locales.min.js

I am using the standard theme from AG.

I also notice, the file ecomo_Container_view.php ends in line 210. I am showind lines 204 to 210

Code: Select all

	if(!$footerCode){
		include_once("$currDir/footer.php"); 
	}else{
		ob_start(); include_once("$currDir/footer.php"); $dFooter=ob_get_contents(); ob_end_clean();
		echo str_replace('<%%FOOTER%%>', $dFooter, $footerCode);
	}
?>
Maybe this corresponds with my reported CSS bug ( viewtopic.php?f=11&t=3077 )?

Olaf