From 4e7036af1e5fc58b8e07d74f1d8f9fd84017f13a Mon Sep 17 00:00:00 2001 From: techno-express Date: Sat, 8 Jul 2017 18:43:15 -0400 Subject: [PATCH] have config file load always. --- gvactions.php | 2 +- gvdashboard.php | 2 +- gvdetails.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gvactions.php b/gvactions.php index 5c148d3..85f6f79 100644 --- a/gvactions.php +++ b/gvactions.php @@ -3,7 +3,7 @@ $getaction = !empty($_POST['action']) ? ($_POST['action']) : '' ; $getID = !empty($_POST['messageId']) ? ($_POST['messageId']) : '' ; //require("validate.php"); -require_once("gvconfig.php"); +require("gvconfig.php"); require_once('googlevoice.php'); $google = new GoogleVoice($GmailAccount, $GmailPassword); diff --git a/gvdashboard.php b/gvdashboard.php index 259446e..bc22196 100644 --- a/gvdashboard.php +++ b/gvdashboard.php @@ -4,7 +4,7 @@ $commandline = !empty($_GET['command']) ? ($_GET['command']) : (!empty($_POST['action']) ? ($_POST['action']) : '' ); //require("validate.php"); require_once("header.php"); -require_once("gvconfig.php"); +require("gvconfig.php"); require_once('googlevoice.php'); $google = new GoogleVoice($GmailAccount, $GmailPassword); require_once('gvpagination.php'); diff --git a/gvdetails.php b/gvdetails.php index aa1954b..1d2b9fd 100644 --- a/gvdetails.php +++ b/gvdetails.php @@ -3,7 +3,7 @@ $getID = !empty($_GET['messageId']) ? ($_GET['messageId']) : ''; //require("validate.php"); require_once("header.php"); -require_once("gvconfig.php"); +require("gvconfig.php"); require_once('googlevoice.php'); ?>