diff options
author | friendica <info@friendica.com> | 2012-05-08 01:14:24 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-08 01:14:24 -0700 |
commit | c141909f338c259d953ba165a54a09e09fa247ba (patch) | |
tree | 6a8844d852b39fb1e1386ab6fe0fb62c581a8bc4 /mod/message.php | |
parent | df3574663944f50820e2d50cfb9d87f505ceff54 (diff) | |
download | volse-hubzilla-c141909f338c259d953ba165a54a09e09fa247ba.tar.gz volse-hubzilla-c141909f338c259d953ba165a54a09e09fa247ba.tar.bz2 volse-hubzilla-c141909f338c259d953ba165a54a09e09fa247ba.zip |
wrap private message autocomplete in an ifdef to make it easier to test/develop
Diffstat (limited to 'mod/message.php')
-rw-r--r-- | mod/message.php | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/mod/message.php b/mod/message.php index 867f199c4..b8695fdd9 100644 --- a/mod/message.php +++ b/mod/message.php @@ -173,15 +173,22 @@ function message_content(&$a) { $preselect = (isset($a->argv[2])?array($a->argv[2]):false); - $select = contact_select('messageto','message-to-select', $preselect, 4, true, false, false, 10); + if(defined('EMAIL_AUTOCOMP')) { -// here's sort of where we want to do contact autocomplete -// comment out the contact selector line just above and use the following one instead, -// then figure out how to make it do the right thing -// pictures would be nice, but that didn't seem to work when I tried it -// (the json backend is found in mod/acl.php) + // here's where we want to do contact autocomplete + // just figure out how to make it do the right thing + // pictures would be nice, but that didn't work when I tried. + // It sort of barely works, but needs help + // (the json backend is found in mod/acl.php) -// $select = '<input type="text" id="recip" name="messageto" value="' . $preselect .'" />'; + $select = '<input type="text" id="recip" name="messageto" value="' . $preselect .'" />'; + } + else { + + // the ugly select box + + $select = contact_select('messageto','message-to-select', $preselect, 4, true, false, false, 10); + } $tpl = get_markup_template('prv_message.tpl'); $o .= replace_macros($tpl,array( |