We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41df73f commit 694e927Copy full SHA for 694e927
configure.php
@@ -693,7 +693,6 @@ function xml_configure()
693
{
694
global $ac;
695
$lang = $ac["LANG"];
696
- $base = basename( __DIR__ );
697
$conf = [];
698
699
$conf[] = "<!ENTITY LANG '$lang'>";
@@ -716,7 +715,10 @@ function xml_configure()
716
715
$conf[] = "<!ENTITY % translation-extensions SYSTEM '$trans3'>";
717
718
if ( $ac['CHMENABLED'] == 'yes' )
719
- $conf[] = "<!ENTITY manual.chmonly SYSTEM './chm/manual.chm.xml'>";
+ {
+ $chmpath = realpain( __DIR__ . "/chm/manual.chm.xml" );
720
+ $conf[] = "<!ENTITY manual.chmonly SYSTEM '$chmpath'>";
721
+ }
722
else
723
$conf[] = "<!ENTITY manual.chmonly ''>";
724
0 commit comments