Commit Graph

7438 Commits

Author SHA1 Message Date
fusionate
adfdb7bae5 Functions: Updates for PHP 8.1 2023-05-13 04:53:18 +00:00
fusionate
196125952b Message [Class]: Updates for PHP 8.1 2023-05-13 04:52:43 +00:00
FusionPBX
ff2c52eda8 Update domains.php 2023-05-12 20:32:44 -06:00
FusionPBX
44a46d491b Use !empty in the if statement 2023-05-12 20:24:39 -06:00
FusionPBX
5c34c991cf Update pdo.php 2023-05-12 18:34:54 -06:00
FusionPBX
a2bb8e5f90 Limit subquery to one result
This prevent a cardinality error.
2023-05-12 16:22:50 -06:00
FusionPBX
4f60390b34 Check if the tables_exists 2023-05-11 22:33:08 -06:00
fusionate
733b206664 Functions: Updates for PHP 8.1 2023-05-12 00:45:09 +00:00
FusionPBX
442147391c Change the and to an or and add an isset 2023-05-10 22:11:01 -06:00
FusionPBX
b86cd20e8e Use isset instead of is_uuid 2023-05-10 22:01:12 -06:00
frytimo
872e676f59 Fix missing php tags (#6687)
* fix missing php tags

* fix missing php tags
2023-05-10 18:19:57 -06:00
fusionate
e7b72de33c Modal [Class]: Updates for PHP 8.1 2023-05-10 22:59:12 +00:00
fusionate
6d4463a5b7 Auto Loader [Class]: Updates for PHP 8.1 2023-05-10 22:39:48 +00:00
fusionate
4de76b44f2 Auto Loader [Class]: Updates for PHP 8.1 2023-05-10 22:37:47 +00:00
fusionate
8021a71647 Menu [Class]: Updates for PHP 8.1 2023-05-10 22:17:19 +00:00
fusionate
43961ec6f2 Message [Class]: Update for PHP 8.1 2023-05-10 22:02:13 +00:00
fusionate
bac9c83f33 Modal [Class]: Update for PHP 8.1 2023-05-10 21:58:51 +00:00
fusionate
46ff8cb278 Message [Class]: Update for PHP 8.1 2023-05-10 21:58:37 +00:00
FusionPBX
2d3f623174 Update for PHP 8.1 2023-05-09 18:50:06 -06:00
FusionPBX
c57fa0fc39 Update for PHP 8.1 2023-05-09 18:39:24 -06:00
FusionPBX
32672b7472 Update for PHP 8.1 2023-05-09 17:11:55 -06:00
FusionPBX
821720db1d Update for PHP 8.1 2023-05-09 17:06:19 -06:00
fusionate
5f2a3fde90 Button [Class]: Update for PHP 8.1 2023-05-09 22:52:04 +00:00
FusionPBX
b732c0afe9 [Bug] value of 0 treated as empty
When empty is used its treating 0 as an empty value and then the value is set to null.  Will work on the changes further to prevent this problem.
2023-05-09 11:14:41 -06:00
FusionPBX
bc0c2ea588 $db variable needed by schema class 2023-05-09 08:39:42 -06:00
FusionPBX
89af27e94e Update button.php 2023-05-08 23:03:00 -06:00
FusionPBX
9e4e8558e5 Remove debug 2023-05-08 22:30:39 -06:00
FusionPBX
fd0615587e Update require.php 2023-05-08 19:02:58 -06:00
FusionPBX
0413b998e8 Ensure PROJECT_ROOT is defined 2023-05-08 18:50:32 -06:00
FusionPBX
edb12399ce Add not empty debug 2023-05-08 17:21:52 -06:00
FusionPBX
26e3a0881d Error reporting for user hide deprecated 2023-05-08 15:07:59 -06:00
markjcrane
423606631b Update version of smarty to 4.3.1 2023-05-08 09:50:42 -06:00
fusionate
8ddbe07d3d PDO: Fix PHP 8.x issue on explode function. 2023-05-08 13:21:10 +00:00
Anthony
e37b930b07 Update app_languages.php (#6666) 2023-05-05 15:21:50 -06:00
FusionPBX
0038395009 If numeric then don't need to escape
Numeric should be safe as a pass thru.
2023-05-05 13:23:44 -06:00
FusionPBX
b40005c11e Account for numbers 2023-05-05 13:18:15 -06:00
jonathanblack1000
0f3b212586 Fix sort on call broadcast display (#6663)
* Fix sort on call broadcast display

* Grandstream Template Updates

For grp/gxp, added settings for intercom auto answer and multicast paging
For gxw42xx - Added off-hook auto-dial settings to all lines
For wp820 - Fixed incorrect P-codes and added setings for wifi roaming
Contributed new template for gxv3480
2023-05-05 11:23:41 -06:00
fusionate
f29a78a6af Functions: Adjust escape function to handle non-strings (XML objects). 2023-05-05 17:00:39 +00:00
frytimo
fef8165be2 Frytimo pr patches for php8.1 (#6630)
* Passing null to parameter #2 ($string) of type string is deprecated

* Passing null to parameter #1 ($string) of type string is deprecated

* php 8.1 fixes

* php 8.1 fixes - replace strlen($var) > 0 with !empty($var)

* php 8.1 fixes - replace ${var} with {$var}

* php 8.1 fixes - replace ${var} with {$var}

* php 8.1 fixes - replace ${var} with {$var}

* php 8.1 fixes - replace ${var} with {$var}

* php 8.1 fixes - strlower with null

* php 8.1 fixes - strreplace with null

* php 8.1 fixes - passing null to base64_decode

* php 8.1 fixes - check for false and check for null on $this->dir

* php 8.1 fixes - remove assignment of $db variable to modules object

* php 8.1 fixes - avoid sending null to substr

* php 8.1 fixes - change ${var} to {$var}

* php 8.1 fixes - check for null before preg_replace

* php 8.1 fixes - remove setting db variable on domains object

* php 8.1 fixes - set empty string if $row['domain_setting_subcategory'] is null

* php 8.1 fixes - set empty string if $_REQUEST['show'] is not available

* php 8.1 fixes

* php 8.1 fixes - correct $_POST checking syntax

* php 8.1 fixes - correct $_POST variables

* php 8.1 fixes

* Use brackets consistently

* Update user_setting_edit.php

* Change to not empty

* Update device.php

* Update text.php

---------

Co-authored-by: Tim Fry <tim@voipstratus.com>
Co-authored-by: FusionPBX <markjcrane@gmail.com>
2023-05-05 10:46:37 -06:00
FusionPBX
ebbb2f1a72 Add additional languages 2023-05-03 22:50:18 -06:00
frytimo
37646c0893 Frytimo pr remove unused variables and fix clobbering (#6656)
* config->exists returns true or false but no action taken and variable
is unused

* remove unused variable db_type

* remove unused variable db_name

* remove unused variable db_username

* remove unused variable db_password

* remove unused variable db_secure

* remove unused variable db_cert_authority

* remove unused variable db_host

* remove unused variable db_path

* remove unused variable db_port

* remove unused variable db. The upgrade method never uses the db variable
and instead uses a new database connection each time.

* remove uninitialized parameters variable

* domain_count never used

* variable context is never used in the method or any app_defaults

* variable $row is clobbered by inner foreach loop

* variable domain_name is never used in method scope

* variable domain_array seems to be uninitialized in this scope so set an
empty string value so function lower_case is not receiving null.
2023-05-03 14:41:39 -06:00
FusionPBX
0bb2443dc0 Add Asia/Tel_Aviv and Asia/Jerusalem to IDT-3 2023-04-30 15:41:59 -06:00
FusionPBX
4c0f1ce46f Update Asia/Jerusalem from IDDT to IDT 2023-04-30 15:15:39 -06:00
Krushali Shah
1f302c903f enable/disable codec settings for all accounts (#6628)
The template for codec enable settings was taking a value as 1 if it was set in the settings. It was not taking the actual value inside it. So I have edited the templates to check the value if it's set to true.
2023-04-29 20:32:04 -06:00
Anthony
610edaae60 Update app_languages.php (#6640) 2023-04-29 18:26:50 -06:00
frytimo
69bd42af05 remove unneeded destruct methods as GC has higher performance (#6631)
Co-authored-by: Tim Fry <tim@voipstratus.com>
2023-04-27 20:18:53 -06:00
Finn
ae7c57eb45 Add support for XMLApp to grp2615 provisioning template (#6623)
Co-authored-by: Finn <finn@acceleratenetworks.com>
2023-04-26 20:44:09 -06:00
FusionPBX
019ca725d8 Remove the seed for srand it is done automatically 2023-04-26 13:40:05 -06:00
FusionPBX
b4ccdd244b [bug] error reporting options user, dev, all (#6616)
An enhancement that adds simple options to show what errors to show in the web interface. This also fixes a bug that causes an error in PHP8.
2023-04-26 11:19:45 -06:00
FusionPBX
9800311adb Add a more flexible footer value 2023-04-25 01:25:59 -06:00