mirror of
https://github.com/reactos/web.git
synced 2024-12-03 09:20:58 +00:00
[ROSWEB] Relative paths suck when symlinks are involved, so source the layout parts from the only absolute server path that is guaranteed to work.
This commit is contained in:
parent
71d302e7cd
commit
367c0bd0db
@ -66,11 +66,11 @@
|
||||
// Server name might be just an IP address
|
||||
if (preg_match("#[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}#", $_SERVER["SERVER_NAME"]))
|
||||
return $_SERVER["SERVER_NAME"];
|
||||
|
||||
|
||||
// If it' a DNS address, return the domain name along with the suffix
|
||||
if (preg_match("#(\.[^.]+\.[^.]+$)#", $_SERVER["SERVER_NAME"], $matches))
|
||||
return $matches[1];
|
||||
|
||||
|
||||
// Otherwise return nothing
|
||||
return "";
|
||||
}
|
||||
@ -96,9 +96,9 @@
|
||||
|
||||
private function _queryProvider($part)
|
||||
{
|
||||
if (file_exists(__DIR__ . '../../www.reactos.org_content/parts/' . $part))
|
||||
if (file_exists('/srv/www/www.reactos.org_content/parts/' . $part))
|
||||
{
|
||||
readfile(__DIR__ . '../../www.reactos.org_content/parts/' . $part);
|
||||
readfile('/srv/www/www.reactos.org_content/parts/' . $part);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user