We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51359ef commit c8e4d9dCopy full SHA for c8e4d9d
administrator/components/com_finder/src/Table/MapTable.php
@@ -70,7 +70,8 @@ public function check()
70
$this->alias = ApplicationHelper::stringURLSafe($this->title, $this->language);
71
72
if (trim($this->alias) == '') {
73
- $this->alias = md5(serialize($this->getProperties()));
+ // Do not serialize objects
74
+ $this->alias = md5(serialize(array_filter($this->getProperties(), fn ($prop) => !is_object($prop))));
75
}
76
77
return true;
0 commit comments