diff options
Diffstat (limited to 'mod/embed/views/default')
-rw-r--r-- | mod/embed/views/default/embed/item/gallery.php | 2 | ||||
-rw-r--r-- | mod/embed/views/default/embed/item/list.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mod/embed/views/default/embed/item/gallery.php b/mod/embed/views/default/embed/item/gallery.php index 09cab3cef..52c0966fa 100644 --- a/mod/embed/views/default/embed/item/gallery.php +++ b/mod/embed/views/default/embed/item/gallery.php @@ -23,7 +23,7 @@ $icon_size = $vars['icon_size']; // different entity types have different title attribute names. $title = isset($item->name) ? $item->name : $item->title; // don't let it be too long -$title = elgg_make_excerpt($title); +$title = elgg_get_excerpt($title); // @todo you can disable plugins that are required by other plugins // (embed requires ecml) so fallback to a hard-coded check to see if ecml is enabled. diff --git a/mod/embed/views/default/embed/item/list.php b/mod/embed/views/default/embed/item/list.php index c45b42e19..8cc60753c 100644 --- a/mod/embed/views/default/embed/item/list.php +++ b/mod/embed/views/default/embed/item/list.php @@ -21,7 +21,7 @@ $icon_size = $vars['icon_size']; // different entity types have different title attribute names. $title = isset($item->name) ? $item->name : $item->title; // don't let it be too long -$title = elgg_make_excerpt($title); +$title = elgg_get_excerpt($title); // @todo you can disable plugins that are required by other plugins // (embed requires ecml) so fallback to a hard-coded check to see if ecml is enabled. |