Changeset 3616 in subversion
- Timestamp:
- May 13, 2010 1:38:23 PM (3 years ago)
- Location:
- trunk/plugins/new_user_dialog
- Files:
-
- 2 edited
-
new_user_dialog.php (modified) (1 diff)
-
package.xml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/new_user_dialog/new_user_dialog.php
r3441 r3616 53 53 54 54 $table->add('title', $this->gettext('name')); 55 $table->add(null, html::tag('input', array('type' => "text", 'name' => "_name", 'value' => $identity['name']))); 55 $table->add(null, html::tag('input', array( 56 'type' => 'text', 57 'name' => '_name', 58 'value' => $identity['name'] 59 ))); 56 60 57 61 $table->add('title', $this->gettext('email')); 58 $table->add(null, html::tag('input', array('type' => "text", 'name' => "_email", 'value' => $identity['email'], 'disabled' => ($identities_level == 1 || $identities_level == 3)))); 62 $table->add(null, html::tag('input', array( 63 'type' => 'text', 64 'name' => '_email', 65 'value' => $identity['email'], 66 'disabled' => ($identities_level == 1 || $identities_level == 3) 67 ))); 59 68 60 69 // add overlay input box to html page 61 $rcmail->output->add_footer(html::div(array('id' => "newuseroverlay"),70 $rcmail->output->add_footer(html::div(array('id' => 'newuseroverlay'), 62 71 html::tag('form', array( 63 72 'action' => $rcmail->url('plugin.newusersave'), 64 'method' => "post"),73 'method' => 'post'), 65 74 html::tag('h3', null, Q($this->gettext('identitydialogtitle'))) . 66 75 html::p('hint', Q($this->gettext('identitydialoghint'))) . 67 76 $table->show() . 68 html::p(array('class' => "formbuttons"), 69 html::tag('input', array('type' => "submit", 'class' => "button mainaction", 'value' => $this->gettext('save')))) 77 html::p(array('class' => 'formbuttons'), 78 html::tag('input', array('type' => 'submit', 79 'class' => 'button mainaction', 'value' => $this->gettext('save')))) 70 80 ) 71 81 )); 72 82 83 // disable keyboard events for messages list (#1486726) 84 $rcmail->output->add_script( 85 "$(document).ready(function () { 86 rcmail.message_list.key_press = function(){}; 87 rcmail.message_list.key_down = function(){}; 88 });", 'foot'); 89 73 90 $this->include_stylesheet('newuserdialog.css'); 74 91 } -
trunk/plugins/new_user_dialog/package.xml
r3441 r3616 14 14 <active>yes</active> 15 15 </lead> 16 <date>2010-0 3-29</date>17 <time>1 3:20:00</time>16 <date>2010-05-13</date> 17 <time>19:35:00</time> 18 18 <version> 19 <release>1. 0</release>19 <release>1.1</release> 20 20 <api>1.0</api> 21 21 </version> … … 25 25 </stability> 26 26 <license uri="http://www.gnu.org/licenses/gpl-2.0.html">GNU GPLv2</license> 27 <notes>-</notes> 27 <notes> 28 - Fix space bar and backspace buttons not working (#1486726) 29 </notes> 28 30 <contents> 29 31 <dir baseinstalldir="/" name="/"> … … 63 65 </dependencies> 64 66 <phprelease/> 67 <changelog> 68 <release> 69 <date>2010-03-29</date> 70 <time>13:20:00</time> 71 <version> 72 <release>1.0</release> 73 <api>1.0</api> 74 </version> 75 <stability> 76 <release>stable</release> 77 <api>stable</api> 78 </stability> 79 <license uri="http://www.gnu.org/licenses/gpl-2.0.html">GNU GPLv2</license> 80 </release> 81 </changelog> 65 82 </package>
Note: See TracChangeset
for help on using the changeset viewer.
