~ubuntu-branches/ubuntu/jaunty/freeradius/jaunty-updates

« back to all changes in this revision

Viewing changes to dialup_admin/htdocs/help/help.php3

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2008-09-22 08:42:02 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20080922084202-eyjprg3z55481ha5
Tags: 2.1.0+dfsg-0ubuntu1
* New upstream release.
* Fixes FTBFS issue with new libtool.
* Fixes listen on random port. (LP: #261809)

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
<pre>
48
48
<?php
 
49
$in_file = '';
49
50
if ($help_file == 'readme')
50
 
        readgzfile('/usr/share/doc/freeradius-dialupadmin/README.gz');
 
51
        $in_file = '../../README';
51
52
else if ($help_file == 'howto')
52
 
        readgzfile('/usr/share/doc/freeradius-dialupadmin/HOWTO.gz');
 
53
        $in_file = '../../doc/HOWTO';
53
54
else if ($help_file == 'faq')
54
 
        readfile('/usr/share/doc/freeradius-dialupadmin/FAQ');
 
55
        $in_file = '../../doc/FAQ';
 
56
if ($in_file != '')
 
57
        readfile("$in_file");
55
58
?>
56
59
</pre>
57
60
<br>