Merge pull request #11 from Gameservers-World/copilot/fix-31f2542f-013c-45ce-827c-760d36a63994
This commit is contained in:
commit
d4442468bf
7 changed files with 3 additions and 3 deletions
|
|
@ -4,7 +4,7 @@ ini_set('display_startup_errors', 1);
|
||||||
error_reporting(E_ALL);
|
error_reporting(E_ALL);
|
||||||
global $db, $view, $settings;
|
global $db, $view, $settings;
|
||||||
|
|
||||||
include "panel/_db.php";
|
include "website_db.php";
|
||||||
|
|
||||||
|
|
||||||
$user_id=$_SESSION['user_id'] ?? 0;
|
$user_id=$_SESSION['user_id'] ?? 0;
|
||||||
|
|
@ -11,7 +11,7 @@ In our website, we are setting "post" pages with a "Tag". The first tag in our p
|
||||||
There are other methods that might be better to get the info. But all we need is the "service_ID" in the "ogp_billing_services" table
|
There are other methods that might be better to get the info. But all we need is the "service_ID" in the "ogp_billing_services" table
|
||||||
This method means we can use one code block in every game page and fill in the data dynamically.
|
This method means we can use one code block in every game page and fill in the data dynamically.
|
||||||
*/
|
*/
|
||||||
include "panel/_db.php";
|
include "website_db.php";
|
||||||
|
|
||||||
|
|
||||||
if (isset($_POST['save']) AND !empty($_POST['description']))
|
if (isset($_POST['save']) AND !empty($_POST['description']))
|
||||||
|
|
@ -4,7 +4,7 @@ ini_set('display_errors', 1);
|
||||||
ini_set('display_startup_errors', 1);
|
ini_set('display_startup_errors', 1);
|
||||||
error_reporting(E_ALL);
|
error_reporting(E_ALL);
|
||||||
|
|
||||||
include "db.php";
|
include "website_db.php";
|
||||||
|
|
||||||
|
|
||||||
// Save new description if admin
|
// Save new description if admin
|
||||||
Loading…
Add table
Add a link
Reference in a new issue