Code

Fixed fax log error message
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 17 May 2006 06:16:52 +0000 (06:16 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 17 May 2006 06:16:52 +0000 (06:16 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3374 594d385d-05f5-0310-b6e9-bd551577e9d8

TODO
plugins/admin/ogroups/termgroup.tpl
plugins/gofax/faxreports/main.inc

diff --git a/TODO b/TODO
index af8180ff900694abc02920aed5801fdf41b2457c..6224ac02863f5d44f65550a0b247c75ef47b1e40 100644 (file)
--- a/TODO
+++ b/TODO
@@ -3,12 +3,6 @@ Target for 2.4.1:
 
 * Explaination of several FIXME's. Group removal, etc.
 
-* saveFilter added, please use!
-
-* generatePasteIcon added, please use!
-
-* Added functions normalizePreg and normalizeLdap. Please use where needed!
-
 * Add online help (english/german)
   Document how to generate it, generate it and check it in
 
@@ -27,12 +21,12 @@ Target for 2.4.1:
 * Change FAIstate when triggering actions
   (install, sysinfo, softupdate)
 
+* Add another tab to ogroups when workstations are included
+  (generic settings include ntp, syslog, mode and action)
+
+* Fix DNS plugin
 
-Now:
-* evaluate what effects a ldap->cat(..., $this->attributes)
-  will have to other plugins in class_plugin.inc
-* Changing NTP-Servers -> start tab! Actions?
-* Fix DNS plugin. Add some more checks 
+* Move from "default" to translated "inherited" (TC, WS and Servers)
 
 
 Target for 2.5:
index 6cbc7cc5028e52c5e61d377d9c94b7b535db75ed..22c11de181c2147d889f9f223ff98732ac3d24f9 100644 (file)
@@ -4,7 +4,7 @@
 <table summary="">
  <tr>
   <td>
-   <select size="1" name="saction" {$actionACL} title="{t}Select action to execute for this   group of terminals{/t}">
+   <select size="1" name="saction" {$actionACL} title="{t}Select action to execute for this group of terminals{/t}">
     <option></option>
     {html_options options=$actions}
    </select>
index 24beb48aa8953208b2e25acb8e8a3ffd11a6521c..701ea89d240e81e6dca4b2122cb26275e12ff9dd 100644 (file)
@@ -1,9 +1,6 @@
 <?php
 
 if (!$remove_lock){
-       /* Page header*/
-       $display= print_header(get_template_path('images/reports.png'), _("FAX reports"));
-
        /* Create faxreport object on demand */
        if (!isset($_SESSION['faxreport']) || (isset($_GET['reset']) && $_GET['reset'] == 1)){
                $_SESSION['faxreport']= new faxreport ($config, $ui);
@@ -15,8 +12,9 @@ if (!$remove_lock){
        $faxreport->acl= get_module_permission($acl, "faxreport", $ui->dn);
 
        /* Execute formular */
-       $display.= $faxreport->execute ();
+       $display= $faxreport->execute ();
        $display.= "<input type=\"hidden\" name=\"ignore\">\n";
+       $display= print_header(get_template_path('images/reports.png'), _("FAX reports")).$display;
 
        /* Store changes  in session */
        $_SESSION['faxreport']= $faxreport;