Skip to content

Commit

Permalink
have config file load always.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechsTech committed Jul 8, 2017
1 parent 8b99603 commit 4e7036a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gvactions.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion gvdashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion gvdetails.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
?>
<link type="text/css" rel="stylesheet" href="assets/<?php echo $theme; ?>/style.css" />
Expand Down

0 comments on commit 4e7036a

Please sign in to comment.