Jump to content

Recommended Posts

Posted

I know there was a core- something for this, but can support manager be updated so that it uses https:// for gravatar rather than the insecure http?

 

/plugins/support_manager/views/default/admin_tickets_reply.pdt        on line 135 

 

plugins/support_manager/views/default/client_tickets_reply.pdt       on line 103 

 

Those lines in each file can be updated to https:// and then clients/admin  will no longer receive the insecure content 

Posted

I know there was a core- something for this, but can support manager be updated so that it uses https:// for gravatar rather than the insecure http?

 

/plugins/support_manager/views/default/admin_tickets_reply.pdt        on line 135 

 

plugins/support_manager/views/default/client_tickets_reply.pdt       on line 103 

 

Those lines in each file can be updated to https:// and then clients/admin  will no longer receive the insecure content 

Yeah Paul was talking about making them like this:

 

<img src="//gravatar.com/avatar/<?php echo md5(strtolower(trim($this->Html->_($reply->email, true))));?>?s=120" />
  • 2 months later...
Posted

This is still present. Can't believe I didn't notice it until now. Easy fix

 

On both:

plugins/support_manager/views/default/client_tickets_reply.pdt

plugins/support_manager/views/default/admin_tickets_reply.pdt

 

<div>
<img src="http://gravatar.com/avatar/<?php echo md5(strtolower(trim($this->Html->_($reply->email, true))));?>?s=120" />
</div>

Should be:

<div>
<img src="https://secure.gravatar.com/avatar/<?php echo md5(strtolower(trim($this->Html->_($reply->email, true))));?>?s=120" />
</div>

 

Posted

This is still present. Can't believe I didn't notice it until now. Easy fix

 

On both:

plugins/support_manager/views/default/client_tickets_reply.pdt

plugins/support_manager/views/default/admin_tickets_reply.pdt

 

<div>
<img src="http://gravatar.com/avatar/<?php echo md5(strtolower(trim($this->Html->_($reply->email, true))));?>?s=120" />
</div>

Should be:

<div>
<img src="https://secure.gravatar.com/avatar/<?php echo md5(strtolower(trim($this->Html->_($reply->email, true))));?>?s=120" />
</div>

 

 

Yeah, it's literally a 5 minute fix. I have been trying to do it on each update but I occasionally forget.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...