noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 37/44: cfgcurrency : file for the new version


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 37/44: cfgcurrency : file for the new version : if the file to include does not exist then display a warning and exit
Date: Wed, 26 Dec 2018 04:29:56 -0500 (EST)

sparkyx pushed a commit to branch master
in repository noalyss.

commit 3efb8904feb19c3345610af4c1d0299d792cb188
Author: Dany De Bontridder <address@hidden>
Date:   Mon Dec 17 23:30:55 2018 +0100

    cfgcurrency : file for the new version :
    if the file to include does not exist then display a warning and exit
---
 include/lib/ac_common.php | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/include/lib/ac_common.php b/include/lib/ac_common.php
index 9ace668..40cb46b 100644
--- a/include/lib/ac_common.php
+++ b/include/lib/ac_common.php
@@ -1103,10 +1103,16 @@ function show_menu($module)
                         }
                        // if file is not a plugin, include the file, otherwise
                        // include the plugin launcher
-                       if ( $file[0]['me_type'] != 'PL')
+                       if ( $file[0]['me_type'] != 'PL') {
+                            if (file_exists($file[0]['me_file']))
+                            {
                                require_once $file[0]['me_file'];
-                       else
+                            } else {
+                                echo echo_warning(_("Fichier non trouvé"));
+                            }
+                        } else {
                                require 'extension_get.inc.php';
+                        }
 
                        exit();
                }



reply via email to

[Prev in Thread] Current Thread [Next in Thread]