diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/embed/start.php | 2 | ||||
-rw-r--r-- | mod/messages/start.php | 2 | ||||
-rw-r--r-- | mod/reportedcontent/start.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/mod/embed/start.php b/mod/embed/start.php index edfcfdd3c..1a6cfce94 100644 --- a/mod/embed/start.php +++ b/mod/embed/start.php @@ -36,7 +36,7 @@ function embed_longtext_menu($hook, $type, $items, $vars) { 'text' => elgg_echo('media:insert'), 'rel' => 'facebox', 'class' => 'elgg-longtext-control', - 'weight' => 1, + 'priority' => 1, )); return $items; diff --git a/mod/messages/start.php b/mod/messages/start.php index 5e258824f..27b6252eb 100644 --- a/mod/messages/start.php +++ b/mod/messages/start.php @@ -45,7 +45,7 @@ function messages_init() { 'name' => 'messages', 'href' => 'pg/messages/inbox/' . elgg_get_logged_in_user_entity()->username, 'text' => $text, - 'weight' => 600, + 'priority' => 600, )); } diff --git a/mod/reportedcontent/start.php b/mod/reportedcontent/start.php index bd5931bd1..b92ab0f30 100644 --- a/mod/reportedcontent/start.php +++ b/mod/reportedcontent/start.php @@ -31,7 +31,7 @@ function reportedcontent_init() { 'title' => elgg_echo('reportedcontent:this:tooltip'), 'text' => elgg_view_icon('report-this') . elgg_echo('reportedcontent:this'), 'section' => 'alt', - 'weight' => 500, + 'priority' => 500, )); } |