Skip to content

Commit 4e7036a

Browse files
committed
have config file load always.
1 parent 8b99603 commit 4e7036a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

gvactions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
$getaction = !empty($_POST['action']) ? ($_POST['action']) : '' ;
44
$getID = !empty($_POST['messageId']) ? ($_POST['messageId']) : '' ;
55
//require("validate.php");
6-
require_once("gvconfig.php");
6+
require("gvconfig.php");
77
require_once('googlevoice.php');
88
$google = new GoogleVoice($GmailAccount, $GmailPassword);
99

gvdashboard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
$commandline = !empty($_GET['command']) ? ($_GET['command']) : (!empty($_POST['action']) ? ($_POST['action']) : '' );
55
//require("validate.php");
66
require_once("header.php");
7-
require_once("gvconfig.php");
7+
require("gvconfig.php");
88
require_once('googlevoice.php');
99
$google = new GoogleVoice($GmailAccount, $GmailPassword);
1010
require_once('gvpagination.php');

gvdetails.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
$getID = !empty($_GET['messageId']) ? ($_GET['messageId']) : '';
44
//require("validate.php");
55
require_once("header.php");
6-
require_once("gvconfig.php");
6+
require("gvconfig.php");
77
require_once('googlevoice.php');
88
?>
99
<link type="text/css" rel="stylesheet" href="assets/<?php echo $theme; ?>/style.css" />

0 commit comments

Comments
 (0)