Bootstrap 5 updates continued

This commit is contained in:
Joey Kimsey
2024-12-14 06:15:47 -05:00
parent 41426fda4e
commit de6d608857
44 changed files with 439 additions and 389 deletions

View File

@ -23,6 +23,11 @@ use TheTempusProject\Hermes\Functions\Route;
use TheTempusProject\Houdini\Classes\Components;
use TheTempusProject\Houdini\Classes\Views;
// I switched to cloudflare which uses a dynamic proxy kinda thing, so any IP address lookups go wonky unless i get the OG IIP
if ( isset( $_SERVER['HTTP_CF_CONNECTING_IP'] ) && filter_var( $_SERVER['HTTP_CF_CONNECTING_IP'], FILTER_VALIDATE_IP ) ) {
$_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_CF_CONNECTING_IP'];
}
/**
* Instantiate a new instance of our application.
*