diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-05-17 16:28:16 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-05-17 16:28:16 -0700 |
commit | 91d7b0f7eb7d3d7240b9ba12e2fbd71334b5a458 (patch) | |
tree | e33928bc87d27d661303c77925a0dd5b69167006 /mod/mitem.php | |
parent | 51b6d709965faa104b02fe148dbe8cf407ff47fa (diff) | |
download | volse-hubzilla-91d7b0f7eb7d3d7240b9ba12e2fbd71334b5a458.tar.gz volse-hubzilla-91d7b0f7eb7d3d7240b9ba12e2fbd71334b5a458.tar.bz2 volse-hubzilla-91d7b0f7eb7d3d7240b9ba12e2fbd71334b5a458.zip |
more work isolating the projectname from core.
Diffstat (limited to 'mod/mitem.php')
-rw-r--r-- | mod/mitem.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/mitem.php b/mod/mitem.php index b03280105..0961e15ff 100644 --- a/mod/mitem.php +++ b/mod/mitem.php @@ -160,7 +160,7 @@ function mitem_content(&$a) { '$aclselect' => populate_acl($perm_defaults,false), '$mitem_desc' => array('mitem_desc', t('Link Name'), '', 'Visible name of the link','*'), '$mitem_link' => array('mitem_link', t('Link or Submenu Target'), '', t('Enter URL of the link or select a menu name to create a submenu'), '*', 'list="menu-names"'), - '$usezid' => array('usezid', t('Use RedMatrix magic-auth if available'), true, ''), + '$usezid' => array('usezid', t('Use magic-auth if available'), true, ''), '$newwin' => array('newwin', t('Open link in new window'), false,''), '$mitem_order' => array('mitem_order', t('Order in list'),'0',t('Higher numbers will sink to bottom of listing')), '$submit' => t('Submit and finish'), @@ -231,7 +231,7 @@ function mitem_content(&$a) { '$mitem_id' => intval(argv(2)), '$mitem_desc' => array('mitem_desc', t('Link text'), $mitem['mitem_desc'], '','*'), '$mitem_link' => array('mitem_link', t('Link or Submenu Target'), $mitem['mitem_link'], 'Enter URL of the link or select a menu name to create a submenu', '*', 'list="menu-names"'), - '$usezid' => array('usezid', t('Use RedMatrix magic-auth if available'), (($mitem['mitem_flags'] & MENU_ITEM_ZID) ? 1 : 0), ''), + '$usezid' => array('usezid', t('Use magic-auth if available'), (($mitem['mitem_flags'] & MENU_ITEM_ZID) ? 1 : 0), ''), '$newwin' => array('newwin', t('Open link in new window'), (($mitem['mitem_flags'] & MENU_ITEM_NEWWIN) ? 1 : 0),''), '$mitem_order' => array('mitem_order', t('Order in list'),$mitem['mitem_order'],t('Higher numbers will sink to bottom of listing')), '$submit' => t('Submit'), |