Changeset 698
- Timestamp:
- 08/22/05 16:16:00 (8 years ago)
- Files:
-
- 1 modified
-
trunk/wifidog-auth/wifidog/install.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/wifidog/install.php
r694 r698 186 186 'radius' => array('needed' => 0, 'available' => 0, 'command' => "return dl('radius.so');", 'message' => 'Try in command line : pear install radius'), 187 187 'Auth_RADIUS' => array('needed' => 0, 'available' => 0, 'command' => "return include_once 'Auth/RADIUS.php';", 'message' => 'Try in command line : pear install Auth_RADIUS'), 188 'Crypt_CHAP' => array('needed' => 0, 'available' => 0, 'command' => "return include_once 'Crypt/CHAP.php';", 'message' => 'Try in command line : pear install Crypt_CHAP ')188 'Crypt_CHAP' => array('needed' => 0, 'available' => 0, 'command' => "return include_once 'Crypt/CHAP.php';", 'message' => 'Try in command line : pear install Crypt_CHAP (mhash and mcrypt extensions are needed)') 189 189 ); 190 190 … … 283 283 empty($navArray['action']) ? $action = '' : $action = $navArray['action']; 284 284 print <<<EndHTML 285 <A HREF=" javascript:document.myform.page.value = '$page'; document.myform.action.value = '$action'; document.myform.submit();" CLASS="button">$title</A>285 <A HREF="#" ONCLICK="document.myform.page.value = '$page'; document.myform.action.value = '$action'; document.myform.submit();" CLASS="button">$title</A> 286 286 287 287 EndHTML; … … 297 297 print <<<EndHTML 298 298 299 <P><A HREF=" javascript: window.location.reload(true);" CLASS="button">Refresh</A></P>299 <P><A HREF="#" ONCLICK="javascript: window.location.reload(true);" CLASS="button">Refresh</A></P> 300 300 EndHTML; 301 301 } … … 493 493 494 494 print "<P><B>Home</B>: $basepath</P>"; 495 print "<P><B>HTTPD username</B>: $process_username</P>"; 495 print "<P><B>HTTPD username/group</B>: $process_username/$process_group</P>"; 496 # print "<P><B>HTTPD group</B>: $process_group<BR</P>"; 496 497 print "<P><TABLE BORDER=\"1\"><TR><TD><B>Directory</B></TD></TD><TD><B>Owner</B></TD><TD><B>Writable</B></TD></TR>\n"; 497 498 … … 770 771 navigation(array(array("title" => "Back", "page" => "magpierss"))); #, array("title" => "Next", "page" => "testdatabase"))); 771 772 print <<< EndHTML 772 <P><A HREF=" javascript: document.myform.page.value='testdatabase'; submitDatabaseValue(); document.myform.submit();" CLASS="button">Next</A></P>773 <P><A HREF="#" ONCLICK="javascript: document.myform.page.value='testdatabase'; submitDatabaseValue(); document.myform.submit();" CLASS="button">Next</A></P> 773 774 774 775 EndHTML; … … 1119 1120 1120 1121 print <<< EndHTML 1121 <P><A HREF=" javascript: document.myform.page.value='languages'; submitOptionsValue(); document.myform.submit();" CLASS="button">Next</A></P>1122 <P><A HREF="#" ONCLICK="javascript: document.myform.page.value='languages'; submitOptionsValue(); document.myform.submit();" CLASS="button">Next</A></P> 1122 1123 EndHTML; 1123 1124 … … 1228 1229 EndHTML; 1229 1230 navigation(array(array("title" => "Back", "page" => "radius"))); 1230 print "<P><A HREF=\" javascript: submitValue();\" CLASS=\"button\">Next</A></P>\n";1231 print "<P><A HREF=\"#\" ONCLICK=\"javascript: submitValue();\" CLASS=\"button\">Next</A></P>\n"; 1231 1232 } 1232 1233 break; … … 1280 1281 1281 1282 print <<< EndHTML 1282 <P><A HREF=" javascript: document.myform.page.value='hotspot'; submitOptionsValue(); document.myform.submit();" CLASS="button">Next</A></P>1283 <P><A HREF="#" ONCLICK="javascript: document.myform.page.value='hotspot'; submitOptionsValue(); document.myform.submit();" CLASS="button">Next</A></P> 1283 1284 EndHTML; 1284 1285 #navigation(array(array("title" => "Back", "page" => "admin"), array("title" => "Next", "page" => "hotspot")));
