Skip to content

Commit

Permalink
New frame mode for dox
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed Jan 1, 2003
1 parent b79f41c commit 106140f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion doc/index.php
Expand Up @@ -3,6 +3,7 @@
require("../config.php"); require("../config.php");


optional_variable($file, ""); // docs file to view optional_variable($file, ""); // docs file to view
optional_variable($frame, ""); // docs file to view
optional_variable($lang, ""); // override current language optional_variable($lang, ""); // override current language


if (!empty($lang)) { if (!empty($lang)) {
Expand All @@ -12,7 +13,11 @@


if (empty($file)) { if (empty($file)) {
$include = false; $include = false;
$file = "intro.html"; if (empty($frame)) {
$file = "intro.html";
} else {
$file = $frame;
}
} else { } else {
$include = true; $include = true;
} }
Expand Down

0 comments on commit 106140f

Please sign in to comment.