Project

General

Profile

« Previous | Next » 

Revision b4738ddc

Added by NewEraCracker over 9 years ago

Fix CSS paths missed by 9d1be24ef72c0c27fe7a297bf79ec5e4f552a390

View differences:

src/etc/inc/auth.inc
143 143
<!DOCTYPE html>
144 144
<html lang="en">
145 145
<head>
146
	<link rel="stylesheet" href="/bootstrap/css/pfSense.css" />
146
	<link rel="stylesheet" href="/css/pfSense.css" />
147 147
	<title><?=gettext("Redirecting..."); ?></title>
148 148
</head>
149 149
<body id="error" class="no-menu">
src/etc/inc/authgui.inc
130 130
		return;
131 131
	}
132 132

  
133
	$cssfile = "/bootstrap/css/pfSense.css";
133
	$cssfile = "/css/pfSense.css";
134 134

  
135 135
	if (isset($config['system']['webgui']['webguicss'])) {
136
	if (file_exists("bootstrap/css/" . $config['system']['webgui']['webguicss'])) {
137
		$cssfile = "/bootstrap/css/" . $config['system']['webgui']['webguicss'];
136
	if (file_exists("/usr/local/www/css/" . $config['system']['webgui']['webguicss'])) {
137
		$cssfile = "/css/" . $config['system']['webgui']['webguicss'];
138 138
	}
139 139
}
140 140

  

Also available in: Unified diff

OSZAR »