Revision 8ae9a909
Added by Jim Pingle over 9 years ago
src/usr/local/www/wizard.php | ||
---|---|---|
71 | 71 |
// This causes the step #, field type and field name to be printed at the top of the page |
72 | 72 |
define(DEBUG, false); |
73 | 73 |
|
74 |
function gentitle_pkg($pgname) { |
|
75 |
global $config; |
|
76 |
return $config['system']['hostname'] . "." . $config['system']['domain'] . " - " . $pgname; |
|
77 |
} |
|
78 |
|
|
79 | 74 |
global $g; |
80 | 75 |
|
81 | 76 |
$stepid = htmlspecialchars($_GET['stepid']); |
Also available in: Unified diff
Encode hostname before printing; remove some related dead code.