moved all #defines to lib/db_params.php

This commit is contained in:
stroggprog
2025-06-24 17:07:25 +01:00
parent 646657a272
commit 8f2ed7aca0
3 changed files with 4 additions and 7 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
# os-partnership
Make or Break Partnerships in Opensimulator
**Version**: 1.0.10
**Version**: 1.0.11
This repository consists of the in-world LSL/OSSL script required to initiate partnership management as well as a PHP script to interrogate and modify partnership details on user account profile records. There are a number of simple libraries accompanying the PHP script, which I culled from my own set of libraries - why invent a new wheel when the old one still works?
+2 -2
View File
@@ -1,14 +1,14 @@
//YEngine:
yoptions;
constant source_version = "1.0.10";
constant __DEBUG__ = FALSE;
constant secret = "0TN@Z6E7**1)U'?MH81:[)z|;nj#3N&Ayb@Ql~.4XE+eR$)Dbg-}Omp_f*2iem=";
constant URL = "https://mossgrid.uk/jrest/";
constant URI = "partnership.php";
constant certificate = "Certificate of Partnership";
constant source_version = "1.0.11";
constant RES_RESULT = 0;
constant RES_ACTION = 1;
constant RES_USER1 = 2;
+1 -4
View File
@@ -4,10 +4,7 @@ include_once("lib/db_mysql.php");
include_once("lib/params.php");
include_once("lib/db_params.php");
define("SRC_VERSION", "1.0.10");
define("ZERO_UUID", "00000000-0000-0000-0000-000000000000");
define("TIMEZONE", "America/Los Angeles");
define("SRC_VERSION", "1.0.11");
$p = new parameters();