Fixed error on inserting refs with single quotes.
[fa-stable.git] / applications / generalledger.php
index 89a34a59a343dcc8f0c89896e4470dd7d89ad12c..4b72f8b80e1987c6d6f27eeb794554528ad84236 100644 (file)
@@ -13,7 +13,7 @@
        {
                function general_ledger_app() 
                {
-                       global $installed_modules;
+                       global $installed_extensions;
                        $this->application("GL",_("&Banking and General Ledger"));
 
                        $this->add_module(_("Transactions"));
                        $this->add_rapp_function(2, _("&GL Accounts"),"gl/manage/gl_accounts.php?");
                        $this->add_rapp_function(2, _("GL Account &Groups"),"gl/manage/gl_account_types.php?");
                        $this->add_rapp_function(2, _("GL Account &Classes"),"gl/manage/gl_account_classes.php?");
-                       if (count($installed_modules) > 0)
+                       if (count($installed_extensions) > 0)
                        {
-                               foreach ($installed_modules as $mod)
+                               foreach ($installed_extensions as $mod)
                                {
-                                       if ($mod["tab"] == "GL")
-                                               $this->add_rapp_function(2, $mod["name"], "modules/".$mod["path"]."/".$mod["filename"]."?");
+                                       if (@$mod['active'] && $mod['type'] == 'plugin' && $mod["tab"] == "GL")
+                                               $this->add_rapp_function(2, $mod["title"], "modules/".$mod["path"]."/".$mod["filename"]."?");
                                }
                        }       
                }