civicrm-core.git
2 years agoMerge pull request #26894 from colemanw/fixTrimWarning
demeritcowboy [Fri, 21 Jul 2023 17:04:48 +0000 (13:04 -0400)]
Merge pull request #26894 from colemanw/fixTrimWarning

[PHP Deprecation] trim(): Passing null to parameter #1 () of type string

2 years ago[PHP Deprecation] trim(): Passing null to parameter #1 () of type string is deprecated
colemanw [Fri, 21 Jul 2023 15:34:31 +0000 (11:34 -0400)]
[PHP Deprecation] trim(): Passing null to parameter #1 () of type string is deprecated

2 years agoMerge pull request #26892 from artfulrobot/artfulrobot-fix-getcount-on-smartgroups
demeritcowboy [Fri, 21 Jul 2023 14:26:02 +0000 (10:26 -0400)]
Merge pull request #26892 from artfulrobot/artfulrobot-fix-getcount-on-smartgroups

getEntitySpecificJoins sometimes returns NULL, triggering deprecation warning for trim() in php 8.1

2 years agoMerge pull request #26887 from colemanw/crmAdminFormRedirect
colemanw [Fri, 21 Jul 2023 13:25:12 +0000 (06:25 -0700)]
Merge pull request #26887 from colemanw/crmAdminFormRedirect

CRM_Admin_Form - Automatically redirect to the "browse" page after submission

2 years agoSystem - Prevent php deprecation notice in pushUserContext
colemanw [Fri, 21 Jul 2023 02:47:02 +0000 (22:47 -0400)]
System - Prevent php deprecation notice in pushUserContext

2 years agogetEntitySpecificJoins sometimes returns NULL, triggering deprecation warning for...
Rich Lott / Artful Robot [Fri, 21 Jul 2023 12:18:26 +0000 (13:18 +0100)]
getEntitySpecificJoins sometimes returns NULL, triggering deprecation warning for trim() in php 8.1

Discovered this in the wild where an api3 Contact.getcount call for a particular smartgroup
was causing this. The smartgroup otherwise works fine.

Looking at the code, it's clear that getEntitySpecificJoins is supposed to return a string,
but in the case of civicrm_activity_contact it was returning from another function which may
return NULL. I have coalesced NULL to empty string.

2 years agoMerge pull request #26746 from aydun/adminui_contributions
Aidan Saunders [Fri, 21 Jul 2023 05:45:59 +0000 (06:45 +0100)]
Merge pull request #26746 from aydun/adminui_contributions

SearchUI: add Find Contributions

2 years agoMerge pull request #26873 from eileenmcnaughton/custom_2
demeritcowboy [Fri, 21 Jul 2023 01:53:23 +0000 (21:53 -0400)]
Merge pull request #26873 from eileenmcnaughton/custom_2

[PHP8.2] Convert remaining properties to local variables / private properties

2 years agoUpdate Readme & links
Aidan Saunders [Thu, 20 Jul 2023 22:27:52 +0000 (23:27 +0100)]
Update Readme & links

2 years agoMerge pull request #26865 from larssandergreen/Label-page-formats
Tim Otten [Thu, 20 Jul 2023 21:31:27 +0000 (14:31 -0700)]
Merge pull request #26865 from larssandergreen/Label-page-formats

Change Administer > Communications > Label Formats to Label Page Formats

2 years agoMerge pull request #26888 from colemanw/removeDoubleHtmlize
demeritcowboy [Thu, 20 Jul 2023 21:00:11 +0000 (17:00 -0400)]
Merge pull request #26888 from colemanw/removeDoubleHtmlize

CRM_Utils_System::url - Remove unused param to double-escape html

2 years agoMetadata - add 'browse' path to LocationType entity
colemanw [Thu, 20 Jul 2023 17:32:21 +0000 (13:32 -0400)]
Metadata - add 'browse' path to LocationType entity

2 years agoAdminForm - Automatically redirect back to browse page after form submittion
colemanw [Thu, 20 Jul 2023 17:30:37 +0000 (13:30 -0400)]
AdminForm - Automatically redirect back to browse page after form submittion

This reads from the `paths` metadata in the DAO to look for a 'browse' path;
we need to add 'browse' paths to the rest of our entities.

2 years agoCRM_Admin_Form - general code cleanup
colemanw [Thu, 20 Jul 2023 15:10:42 +0000 (11:10 -0400)]
CRM_Admin_Form - general code cleanup

2 years agoMerge pull request #26878 from colemanw/locationTypeFixes
Mathieu Lu [Thu, 20 Jul 2023 20:46:13 +0000 (16:46 -0400)]
Merge pull request #26878 from colemanw/locationTypeFixes

[REF] LocationType - Set defaults, modernize form and BAO

2 years agoMerge pull request #26886 from mlutfy/ui51
colemanw [Thu, 20 Jul 2023 20:39:36 +0000 (13:39 -0700)]
Merge pull request #26886 from mlutfy/ui51

dev/user-interface#51 Remove top buttons on admin forms

2 years agoMerge pull request #26881 from colemanw/actionMappingLimit
colemanw [Thu, 20 Jul 2023 20:30:08 +0000 (13:30 -0700)]
Merge pull request #26881 from colemanw/actionMappingLimit

ScheduledReminders - Add option list for limit_to column and fix type

2 years agoCRM_Utils_System::url - Remove unused param to double-escape html
colemanw [Thu, 20 Jul 2023 16:36:55 +0000 (12:36 -0400)]
CRM_Utils_System::url - Remove unused param to double-escape html

2 years agoScheduledReminders - Handle legacy input for limit_to
colemanw [Wed, 19 Jul 2023 23:55:55 +0000 (19:55 -0400)]
ScheduledReminders - Handle legacy input for limit_to

2 years agoScheduledReminders - Add option list for limit_to column and fix type
colemanw [Wed, 19 Jul 2023 21:10:32 +0000 (17:10 -0400)]
ScheduledReminders - Add option list for limit_to column and fix type

Before: limit_to column is 'boolean' in the metadata and has no option list, but
effectively it has 3 options: NULL, '0' and '1'.

After: Changed type to 'integer', added pseudoconstant, and renamed the '0' option
to '2' so it isn't as easily confused with NULL.

2 years agodev/user-interface#51 Remove top buttons on admin forms
Mathieu Lutfy [Thu, 20 Jul 2023 10:50:13 +0000 (06:50 -0400)]
dev/user-interface#51 Remove top buttons on admin forms

2 years agoMerge pull request #26884 from colemanw/scheduledRemindersStandaloneForm
colemanw [Thu, 20 Jul 2023 15:05:17 +0000 (08:05 -0700)]
Merge pull request #26884 from colemanw/scheduledRemindersStandaloneForm

ScheduledReminders - Refactor form to work at a standalone url

2 years agoMerge pull request #26885 from civicrm/5.64
Seamus Lee [Thu, 20 Jul 2023 08:27:39 +0000 (04:27 -0400)]
Merge pull request #26885 from civicrm/5.64

5.64

2 years agoMerge pull request #26868 from seamuslee001/fix_redirect_url_payment_processor_wordpress
Seamus Lee [Thu, 20 Jul 2023 05:40:06 +0000 (01:40 -0400)]
Merge pull request #26868 from seamuslee001/fix_redirect_url_payment_processor_wordpress

[REF] Ensure that url that is stored as context is generated correctl…

2 years agoMerge pull request #25206 from mattwire/activityexternalid
demeritcowboy [Thu, 20 Jul 2023 05:17:34 +0000 (01:17 -0400)]
Merge pull request #25206 from mattwire/activityexternalid

Allow matching on external_identifier for source/target contacts on Activity import

2 years agoMerge pull request #26343 from larssandergreen/More-PHP8-warnings-on-Participant
Eileen McNaughton [Thu, 20 Jul 2023 03:42:50 +0000 (15:42 +1200)]
Merge pull request #26343 from larssandergreen/More-PHP8-warnings-on-Participant

Fix PHP8 tax_rate warning on Participant

2 years agoScheduledReminders - Refactor form to work at a standalone url
colemanw [Thu, 20 Jul 2023 01:38:49 +0000 (21:38 -0400)]
ScheduledReminders - Refactor form to work at a standalone url

2 years agoLocationType - Fix error in fix for smarty notices
colemanw [Thu, 20 Jul 2023 00:41:53 +0000 (20:41 -0400)]
LocationType - Fix error in fix for smarty notices

2 years agoLocationType - Fix generated sql with correct defaults and untranslated names
colemanw [Wed, 19 Jul 2023 15:49:46 +0000 (11:49 -0400)]
LocationType - Fix generated sql with correct defaults and untranslated names

2 years agoMerge pull request #26883 from colemanw/adminUiVer
Eileen McNaughton [Wed, 19 Jul 2023 23:46:45 +0000 (11:46 +1200)]
Merge pull request #26883 from colemanw/adminUiVer

Mark admin_ui extension as 'beta'

2 years agoMerge pull request #26882 from seamuslee001/5.64
colemanw [Wed, 19 Jul 2023 23:45:00 +0000 (16:45 -0700)]
Merge pull request #26882 from seamuslee001/5.64

dev/core#4439 Fix price set select broken price attr regression

2 years agoMerge pull request #26880 from colemanw/jobToJob
Eileen McNaughton [Wed, 19 Jul 2023 23:40:32 +0000 (11:40 +1200)]
Merge pull request #26880 from colemanw/jobToJob

Job - uppercase api entity

2 years agoMark admin_ui extension as 'beta'
colemanw [Wed, 19 Jul 2023 23:15:44 +0000 (19:15 -0400)]
Mark admin_ui extension as 'beta'

2 years agoMerge pull request #26876 from colemanw/scheduleReminderForm
Seamus Lee [Wed, 19 Jul 2023 22:53:56 +0000 (18:53 -0400)]
Merge pull request #26876 from colemanw/scheduleReminderForm

[REF] ScheduleReminders - Cleanup "sublimely stupid" form code

2 years agoFix price set select broken price attr regression
larssandergreen [Tue, 18 Jul 2023 18:56:15 +0000 (12:56 -0600)]
Fix price set select broken price attr regression

2 years agoJob - uppercase api entity
colemanw [Wed, 19 Jul 2023 18:07:10 +0000 (14:07 -0400)]
Job - uppercase api entity

2 years agoAllow activity import matching source/target contact on external ID
Matthew Wire [Thu, 15 Dec 2022 21:46:42 +0000 (21:46 +0000)]
Allow activity import matching source/target contact on external ID

2 years agoLocationType - Set defaults
colemanw [Wed, 19 Jul 2023 15:08:45 +0000 (11:08 -0400)]
LocationType - Set defaults

2 years agoMerge pull request #26877 from colemanw/godHasAnswered
Matthew Wire [Wed, 19 Jul 2023 14:24:42 +0000 (15:24 +0100)]
Merge pull request #26877 from colemanw/godHasAnswered

God has answered

2 years agoGod has answered
colemanw [Wed, 19 Jul 2023 01:24:11 +0000 (21:24 -0400)]
God has answered

2 years agoScheduleReminders - Cleanup awful form code
colemanw [Wed, 19 Jul 2023 00:30:12 +0000 (20:30 -0400)]
ScheduleReminders - Cleanup awful form code

Lots more refactoring to do, this fixes the easy-to-fix things that were obviously wrong.

2 years agoMerge pull request #26867 from eileenmcnaughton/import
colemanw [Tue, 18 Jul 2023 23:34:31 +0000 (16:34 -0700)]
Merge pull request #26867 from eileenmcnaughton/import

Fix js error on CiviImport when csv has additional fields

2 years agoMerge pull request #26875 from civicrm/5.64
Eileen McNaughton [Tue, 18 Jul 2023 23:16:39 +0000 (11:16 +1200)]
Merge pull request #26875 from civicrm/5.64

5.64

2 years agoConvert remaining properties to local variables / private properties
Eileen McNaughton [Tue, 18 Jul 2023 20:18:17 +0000 (08:18 +1200)]
Convert remaining properties to local variables / private properties

2 years agoMerge pull request #26855 from colemanw/actionMappingCleanup
Seamus Lee [Tue, 18 Jul 2023 22:51:23 +0000 (18:51 -0400)]
Merge pull request #26855 from colemanw/actionMappingCleanup

[REF] ActionMapping - Improve class structure

2 years agoMerge pull request #26874 from eileenmcnaughton/property_test
Eileen McNaughton [Tue, 18 Jul 2023 22:50:24 +0000 (10:50 +1200)]
Merge pull request #26874 from eileenmcnaughton/property_test

Cleanup test class, including fix undeclared property

2 years agoMerge pull request #26831 from totten/5.64-icon-path
Seamus Lee [Tue, 18 Jul 2023 22:43:34 +0000 (18:43 -0400)]
Merge pull request #26831 from totten/5.64-icon-path

(dev/core#4414) Greenwich - Fix icon path

2 years agoCleanup test class, including fix undeclared property
Eileen McNaughton [Tue, 18 Jul 2023 20:37:15 +0000 (08:37 +1200)]
Cleanup test class, including fix undeclared property

2 years agoMerge pull request #26871 from demeritcowboy/upg-smarty
demeritcowboy [Tue, 18 Jul 2023 21:45:32 +0000 (17:45 -0400)]
Merge pull request #26871 from demeritcowboy/upg-smarty

Upgrade doesn't work

2 years agoMerge pull request #26872 from eileenmcnaughton/custom
demeritcowboy [Tue, 18 Jul 2023 21:45:16 +0000 (17:45 -0400)]
Merge pull request #26872 from eileenmcnaughton/custom

Remove never set property from previously shared code

2 years agocorrect precedence
demeritcowboy [Tue, 18 Jul 2023 20:04:14 +0000 (16:04 -0400)]
correct precedence

2 years agoRemove never set property from previously shared code
Eileen McNaughton [Tue, 18 Jul 2023 20:01:01 +0000 (08:01 +1200)]
Remove never set property from previously shared code

2 years agobe more literal
demeritcowboy [Tue, 18 Jul 2023 19:49:01 +0000 (15:49 -0400)]
be more literal

2 years agoActionMapping - Clean up obtuse methods of fetching a MappingInterface class
colemanw [Tue, 18 Jul 2023 14:46:14 +0000 (10:46 -0400)]
ActionMapping - Clean up obtuse methods of fetching a MappingInterface class

Changed calls to getMappings to use getMapping if they only needed a single value.
In some cases they could be entirely removed because they weren't using the retrieved class for anything.
Deprecated the use of 'filters' param in getMappings as it was redundant with simply calling getMapping with an id.

2 years agoAdd Summary section
Aidan Saunders [Tue, 18 Jul 2023 10:27:19 +0000 (11:27 +0100)]
Add Summary section
Add 'Experimental' top-level menu
Add menu item for 'Find Contributions' under 'Experimental'

2 years agoSearch on name or email
Aidan Saunders [Tue, 18 Jul 2023 09:48:46 +0000 (10:48 +0100)]
Search on name or email

2 years agoMove to SearchUI
Aidan Saunders [Tue, 18 Jul 2023 09:21:49 +0000 (10:21 +0100)]
Move to SearchUI

2 years agoYes/No field improvements
Aidan Saunders [Thu, 6 Jul 2023 15:26:50 +0000 (16:26 +0100)]
Yes/No field improvements

2 years agoFirst attempt at Find Contributions replacement
Aidan Saunders [Thu, 6 Jul 2023 06:55:34 +0000 (07:55 +0100)]
First attempt at Find Contributions replacement

2 years agoMerge pull request #26869 from yashodha/add_tpl_class
Seamus Lee [Tue, 18 Jul 2023 07:30:37 +0000 (03:30 -0400)]
Merge pull request #26869 from yashodha/add_tpl_class

fix duplicate id for softCredit

2 years agofix duplicate id for softCredit
yashodha [Tue, 18 Jul 2023 05:19:47 +0000 (10:49 +0530)]
fix duplicate id for softCredit

2 years ago[REF] Ensure that url that is stored as context is generated correctly for backend...
Seamus Lee [Tue, 18 Jul 2023 04:45:17 +0000 (14:45 +1000)]
[REF] Ensure that url that is stored as context is generated correctly for backend usage in wordpress

2 years agoFix js error on CiviImport when csv has additional fields
Eileen McNaughton [Tue, 18 Jul 2023 03:04:55 +0000 (15:04 +1200)]
Fix js error on CiviImport when csv has additional fields

2 years agoActionMapping - Improve class structure
colemanw [Tue, 18 Jul 2023 00:27:51 +0000 (20:27 -0400)]
ActionMapping - Improve class structure

Completes the refactoring that began with https://github.com/civicrm/civicrm-core/pull/6687
Fully migrates from the old model based on the civicrm_action_mapping table
(dropped in https://github.com/civicrm/civicrm-core/pull/26646)
by removing all references to that structure and fully embracing the object-model.
New common base-class added to make it eaiser to implement MappingInterface.

2 years agoMerge pull request #26866 from eileenmcnaughton/logged
Seamus Lee [Tue, 18 Jul 2023 00:05:00 +0000 (20:05 -0400)]
Merge pull request #26866 from eileenmcnaughton/logged

Superficial cleanup in pledge form

2 years agoMerge pull request #26852 from totten/master-s3b
Tim Otten [Mon, 17 Jul 2023 21:58:02 +0000 (14:58 -0700)]
Merge pull request #26852 from totten/master-s3b

Standalone - Web-based installation for PHP built-in server

2 years agoMerge pull request #26864 from colemanw/deleteBoilerplate
Eileen McNaughton [Mon, 17 Jul 2023 21:25:34 +0000 (09:25 +1200)]
Merge pull request #26864 from colemanw/deleteBoilerplate

[NFC] Delete unused boilerplate comments

2 years agoSuperficial cleanup in pledge form
Eileen McNaughton [Mon, 17 Jul 2023 21:05:12 +0000 (09:05 +1200)]
Superficial cleanup in pledge form

2 years agoChange Label Formats to Label Page Formats
larssandergreen [Mon, 17 Jul 2023 20:48:07 +0000 (14:48 -0600)]
Change Label Formats to Label Page Formats

2 years agoDelete unused boilerplate comments
colemanw [Mon, 17 Jul 2023 18:17:41 +0000 (14:17 -0400)]
Delete unused boilerplate comments

2 years agoMerge pull request #26863 from aydun/searchui_create
colemanw [Mon, 17 Jul 2023 18:15:01 +0000 (11:15 -0700)]
Merge pull request #26863 from aydun/searchui_create

Create SearchUI extension

2 years agoUpdate AdminUI & SearchUI info.xml
Aidan Saunders [Mon, 17 Jul 2023 17:36:51 +0000 (18:36 +0100)]
Update AdminUI & SearchUI info.xml

2 years agoMove Contact Search from AdminUI to SearchUI
Aidan Saunders [Mon, 17 Jul 2023 17:07:59 +0000 (18:07 +0100)]
Move Contact Search from AdminUI to SearchUI

2 years agoCreate SearchUI extension
Aidan Saunders [Mon, 17 Jul 2023 17:07:33 +0000 (18:07 +0100)]
Create SearchUI extension

2 years agoMerge pull request #26862 from yashodha/add_tpl_class
colemanw [Mon, 17 Jul 2023 16:28:10 +0000 (09:28 -0700)]
Merge pull request #26862 from yashodha/add_tpl_class

Add classes to membership results

2 years agoadd classes to membership results
yashodha [Mon, 17 Jul 2023 15:04:25 +0000 (20:34 +0530)]
add classes to membership results

2 years agoMerge pull request #26860 from eileenmcnaughton/member
Yashodha Chaku [Mon, 17 Jul 2023 11:57:27 +0000 (17:27 +0530)]
Merge pull request #26860 from eileenmcnaughton/member

[PHP8.2] move property declaration form CRM_Member_Form_Membership to parent

2 years agoMerge pull request #26842 from colemanw/isActiveToggle
Aidan Saunders [Mon, 17 Jul 2023 09:44:35 +0000 (10:44 +0100)]
Merge pull request #26842 from colemanw/isActiveToggle

AdminUI - Add toggle for is_active

2 years agoMerge pull request #26857 from eileenmcnaughton/logged
Yashodha Chaku [Mon, 17 Jul 2023 06:32:51 +0000 (12:02 +0530)]
Merge pull request #26857 from eileenmcnaughton/logged

[tests][php8.2] Use function rather than sometimes declared property for loggedInUserID

2 years ago[tests][php8.2] Use function rather than sometimes declared property for loggedInUserID
Eileen McNaughton [Mon, 17 Jul 2023 01:20:56 +0000 (13:20 +1200)]
[tests][php8.2] Use function rather than sometimes declared property for loggedInUserID

2 years agoMerge pull request #26859 from eileenmcnaughton/cust_case
colemanw [Mon, 17 Jul 2023 03:02:23 +0000 (20:02 -0700)]
Merge pull request #26859 from eileenmcnaughton/cust_case

[php8.2] Fix undeclared properties on case custom data form

2 years agoMerge pull request #26858 from eileenmcnaughton/cust_by_type
Seamus Lee [Mon, 17 Jul 2023 03:01:29 +0000 (23:01 -0400)]
Merge pull request #26858 from eileenmcnaughton/cust_by_type

Remove never-true-if

2 years agoMerge pull request #26845 from eileenmcnaughton/subname
demeritcowboy [Mon, 17 Jul 2023 02:39:38 +0000 (22:39 -0400)]
Merge pull request #26845 from eileenmcnaughton/subname

Remove `_subName` property

2 years ago[php8.2] Fix undeclared properties on case custom data form
Eileen McNaughton [Mon, 17 Jul 2023 02:05:24 +0000 (14:05 +1200)]
[php8.2] Fix undeclared properties on case custom data form

2 years ago[PHP8.2] move property declaration form CRM_Member_Form_Membership to parent
Eileen McNaughton [Mon, 17 Jul 2023 02:18:39 +0000 (14:18 +1200)]
[PHP8.2] move property declaration form CRM_Member_Form_Membership to parent

2 years agoRemove never-true-if
Eileen McNaughton [Mon, 17 Jul 2023 01:36:51 +0000 (13:36 +1200)]
Remove never-true-if

2 years agoMerge pull request #26856 from seamuslee001/p82_logged_in_user
Tim Otten [Mon, 17 Jul 2023 00:58:45 +0000 (17:58 -0700)]
Merge pull request #26856 from seamuslee001/p82_logged_in_user

[NFC][PHP8.2] Fix dynamic property _loggedInUser

2 years ago[NFC][PHP8.2] Fix dynamic property _loggedInUser
Seamus Lee [Sun, 16 Jul 2023 22:57:16 +0000 (08:57 +1000)]
[NFC][PHP8.2] Fix dynamic property _loggedInUser

2 years agoActionMapping - Rename ambiguous 'getEntity' function
colemanw [Sun, 16 Jul 2023 21:29:49 +0000 (17:29 -0400)]
ActionMapping - Rename ambiguous 'getEntity' function

Before: function getEntity() actually returns the name of the table, not the entity
After: function getEntityTable() returns table name and getEntityName() returns entity name

2 years agoMerge pull request #26843 from colemanw/searchKitButtons
demeritcowboy [Sun, 16 Jul 2023 15:08:42 +0000 (11:08 -0400)]
Merge pull request #26843 from colemanw/searchKitButtons

SearchKit - fix min-width of buttons

2 years agoMerge pull request #26850 from totten/master-ref-mail
colemanw [Sun, 16 Jul 2023 14:28:52 +0000 (07:28 -0700)]
Merge pull request #26850 from totten/master-ref-mail

(REF) CMSUser::create - Rename misleading parameter

2 years agoMerge pull request #26851 from eileenmcnaughton/unshared
Eileen McNaughton [Sun, 16 Jul 2023 06:35:45 +0000 (18:35 +1200)]
Merge pull request #26851 from eileenmcnaughton/unshared

Follow up fix (master only regression)

2 years agoSetup UI - Use separate "Database" section (on standalone)
Tim Otten [Sun, 16 Jul 2023 06:12:18 +0000 (23:12 -0700)]
Setup UI - Use separate "Database" section (on standalone)

2 years agoSetup UI - Display "Administrator" options (on standalone)
Tim Otten [Sun, 16 Jul 2023 05:55:00 +0000 (22:55 -0700)]
Setup UI - Display "Administrator" options (on standalone)

2 years agoFollow up fix
Eileen McNaughton [Sun, 16 Jul 2023 05:12:13 +0000 (17:12 +1200)]
Follow up fix

2 years agoStandalone - Interpret the $mailParam (same way as everyone else)
Tim Otten [Sun, 16 Jul 2023 04:54:12 +0000 (21:54 -0700)]
Standalone - Interpret the $mailParam (same way as everyone else)

2 years agosetup - Fix php8 warnings when MySQL password is blank
Tim Otten [Sun, 16 Jul 2023 04:11:02 +0000 (21:11 -0700)]
setup - Fix php8 warnings when MySQL password is blank

2 years agoSetupResponse - Fix php8 warning
Tim Otten [Sun, 16 Jul 2023 04:10:02 +0000 (21:10 -0700)]
SetupResponse - Fix php8 warning

2 years agoSelectValues::permissions - Fix php8 warning
Tim Otten [Sun, 16 Jul 2023 04:08:17 +0000 (21:08 -0700)]
SelectValues::permissions - Fix php8 warning

2 years agoDbUtil - Report MySQL failures consistently on php7+php8
Tim Otten [Sun, 16 Jul 2023 04:11:12 +0000 (21:11 -0700)]
DbUtil - Report MySQL failures consistently on php7+php8