Menu

Missing Sections

2008-12-30
2013-04-25
  • Obert Jones

    Obert Jones - 2008-12-30

    In previous versions of Entertrack 1.1.x , we were able to see not only the "Groups", but the "Last Updated", "My Opened", and "My Assigned" sections after logging in to the package.

    Now we only see "Groups".

    I also notice the http\\... is defaulting to "?module=issues&action=choose"

    Is this by design?

    -obj

     
    • Obert Jones

      Obert Jones - 2009-01-08

      Here is what I did to resolve this issue.

      File: index.php
      Line: 159

      CHANGED:

      ==============================
      if (empty($_GET['module'])) {
             $_GET['module'] = 'issues';
              }
      ==============================

      TO:

      ==============================
      if (empty($_GET['module'])) {
                if ($_SESSION['group_count'] > 0) {
                  $includes = module_includes("miniview");
                  foreach ($includes as $inc) {
                    include($inc);
                      }
                }
          }
      ==============================
      -obj

       
    • David Trejos

      David Trejos - 2009-01-23

      Thanks Obert,

      Your code is already added into the next release, also, we improve a bit the performance in the miniview section.

      David T

       
    • rob rob

      rob rob - 2009-01-24

      ya i also need it. Another thig i want is sms alert using kannel , i just need one http request to send to kannel to send sms just tell me where can i modify in notification subsystem . Just one line of code will work (http_request) to mobile number stored in sms data.

      robby

       

Log in to post a comment.