projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
85be684
)
Return array for setdefaults
author
Pradeep Nayak
<pradpnayak@gmail.com>
Tue, 15 Mar 2022 11:08:51 +0000
(11:08 +0000)
committer
Pradeep Nayak
<pradpnayak@gmail.com>
Tue, 15 Mar 2022 11:33:17 +0000
(11:33 +0000)
CRM/Core/Form.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Core/Form.php
b/CRM/Core/Form.php
index ae31027817d832671e07c05ec3518928bff540ce..6d59fd537f61a5baeb38737d22faecabf078c84e 100644
(file)
--- a/
CRM/Core/Form.php
+++ b/
CRM/Core/Form.php
@@
-611,11
+611,11
@@
class CRM_Core_Form extends HTML_QuickForm_Page {
/**
* This virtual function is used to set the default values of various form elements.
*
- * @return array
|NULL
+ * @return array
* reference to the array of default values
*/
public function setDefaultValues() {
- return
NULL
;
+ return
[]
;
}
/**