- πΊπ¦Ukraine AstonVictor
I'm closing it because the issue was created a long time ago without any further steps.
if you still need it then raise a new one.
thanks
Exporting oEmbed presets using Features creates an erroneous my_feature.features.inc file. Specifically, the my_feature_ctools_plugin_api
function ends up containing the following code:
if ($module == "oembedcore" && $api == "") {
return array("version" => );
}
which of course contains a syntax error in the return statement.
I fixed it temporarily by altering the schema of oembedcore in my own module:
function my_module_schema_alter(&$schema) {
$schema['oembedcore_preset']['export']['api'] = array(
'owner' => 'oembedcore',
'api' => 'oembedcore',
'minimum_version' => 1,
'current_version' => 1,
);
$schema['oembedcore_preset']['export']['api'] = array(
'owner' => 'oembedcore',
'api' => 'oembedcore',
'minimum_version' => 1,
'current_version' => 1,
);
}
Closed: outdated
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
I'm closing it because the issue was created a long time ago without any further steps.
if you still need it then raise a new one.
thanks