Doest it work under PHP 8.2? Got many deprecation warnings.
]]>Hi, api.js
causes an jq error:
Uncaught Error: Syntax error, unrecognized expression: [...]
while trying rendering image captions.
line 109 of api.js
: } else if($originalCaption.text() !== $(caption).text()){
caption
contains a string, not necessarily HTML so $(caption)
can’t be evaluated.
to date we’ve hacked these in and would suggest putting them in the creative-common.inc
/**
* public domain
*/
$licenses['cc0'] = array(
'label' => 'CC0',
'cc_path' => 'publicdomain/zero/1.0',
);
$licenses['cc-pd-mark'] = array(
'label' => 'CC public domain',
'cc_path' => 'publicdomain/mark/1.0', ....
]]>