]> git.entuzijast.net Git - freeradius-dialup-admin.git/commitdiff
* Add the style sheet in the content.html
authorkkalev <kkalev>
Tue, 27 Jul 2004 11:33:41 +0000 (11:33 +0000)
committerkkalev <kkalev>
Tue, 27 Jul 2004 11:33:41 +0000 (11:33 +0000)
* Enlarge the width for the left frame
* Make show_groups and the drop down menu in group_new work

Changelog
htdocs/content.html
htdocs/group_new.php3
htdocs/index.html
htdocs/show_groups.php3

index 123b7454e6ec2b306acc3642e5181e9b997bfaca..70a8743fc4eb5144ad08ed0d44c1a8a07dac6bcc 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -11,6 +11,10 @@ Ver 1.75:
   $existing_groups along with a count of users per group. Use the functionality in group_new.php3
   and show_groups.php3
 * Update TODO
+* Add the style sheet in the content.html
+* Enlarge the width for the left frame
+* Make show_groups and the drop down menu in group_new work
+
 Ver 1.72:
 * Move the xlat function to a separate file in lib/xlat.php3
 * Add a lib/sql/nas_list.php3 to also get the nas list from sql (naslist.conf still works)
index cbc05c4adb43b44d5ff41884cac8d6cfc9482364..8e27e249b16ffd9aee058595e40c58cd16856350 100644 (file)
@@ -1,4 +1,7 @@
 <html>
+<head>
+<link rel="stylesheet" href="style.css">
+</head>
 <body>
 <center><img src="images/title2.gif">
 <br><font size=+1><br>
index f3a367345e29fa686a807b9fcaa5b479d5abd5d3..acc0df0c13dc90ff320599a936dd5cf6492e2f54 100644 (file)
@@ -95,7 +95,7 @@ EOM;
                        echo "<b>No groups available</b>\n";
                else{
                        echo "<select name=\"existing_groups\">\n";     
-                       foreach ($existing_groups as $group)
+                       foreach ($existing_groups as $count => $group)
                                echo "<option value=\"$group\">$group\n";
                        echo "</select>\n";
                }
index b05a435585a3bbcb6656e935fff69a1d31da142f..fd0659a5450ddd742e84195bd84c743c48101c03 100644 (file)
@@ -3,7 +3,7 @@
 <title>
 dialup administration</title>
 </head>
-       <frameset cols="122,*" border="0" frameborder="0" framespacing="0">
+       <frameset cols="130,*" border="0" frameborder="0" framespacing="0">
                <frame  name="buttons" src="buttons.php3" marginwidth="8"
                        marginheight="8" noresize >
                <frame  name="content" src="content.html" marginwidth="8"
index 35dbb738c0d38b301147ec3527df7bbef6f5fcd7..3fbff86959097010b649e74a0a7955f736c257e6 100644 (file)
@@ -71,7 +71,7 @@ EOM;
 <?php
 unset($login);
 $num = 0;
-include_once('../lib/$config[general_lib_type]/group_info.php3');
+include_once("../lib/$config[general_lib_type]/group_info.php3");
 if (isset($existing_groups)){
        foreach ($existing_groups as $num_members => $group){
                $num++;