Michael Posted October 29, 2015 Report Posted October 29, 2015 Don't think this is a bug officially but there's a cPanel name in the interworx change password form: /components/modules/interworx/views/default/tab_client_actions.pdt <div id="change_password"> <h4><?php $this->_("Interworx.tab_client_actions.change_password");?></h4> <?php $this->Form->create($this->base_uri . "services/manage/" . $this->Html->ifSet($service_id) . "/tabClientActions/"); ?> <div class="col-md-12"> <div class="form-group"> <?php $this->Form->label($this->_("Interworx.tab_client_actions.field_interworx_password", true), "interworx_password"); $this->Form->fieldPassword("interworx_password", array('id' => "cpanel_password", 'class'=>"form-control", 'placeholder'=>$this->_("Interworx.tab_client_actions.field_interworx_password", true))); ?> </div> <div class="form-group"> <?php $this->Form->label($this->_("Interworx.tab_client_actions.field_interworx_confirm_password", true), "interworx_confirm_password"); $this->Form->fieldPassword("interworx_confirm_password", array('id' => "cpanel_confirm_password", 'class'=>"form-control", 'placeholder'=>$this->_("Interworx.tab_client_actions.field_interworx_confirm_password", true))); ?> </div> </div> <button class="btn btn-default pull-right"> <i class="fa fa-edit"></i> <?php $this->_("Interworx.tab_client_actions.field_password_submit");?> </button> <?php $this->Form->end(); ?> </div>
Tyson Posted October 29, 2015 Report Posted October 29, 2015 Nice catch. That's a very minor issue at worst, but nonetheless CORE-1870. Michael 1
Recommended Posts