Prestashop bug - twitter share blank popup

Dopo il problema del facebook share image crop ne abbiamo trovato un altro, sempre riguardante il modulo core Social Sharing (Condivisione sui social network).
Nelle pagine di alcuni prodotti, cliccando sul pulsante per condividere su Twitter il popup si apre normalmente ma risulta completamente bianco e vuoto.




Cercandone la causa abbiamo scoperto che il problema si presenta quando il nome del prodotto contiene il simbolo "%", come ad esempio "Prodotto tipico sconto 30%".
Sperando che Prestashop corregga il baco al più presto, come soluzione temporanea abbiamo editato il file
modules\socialsharing\js\socialsharing.js
e abbiamo modificato la seguente riga da così:
 window.open('https://twitter.com/intent/tweet?text=' + sharing_name + ' ' + encodeURIComponent(sharing_url), 'sharertwt', 'toolbar=0,status=0,width=640,height=445');  
a così:
 window.open('https://twitter.com/intent/tweet?text=' + encodeURIComponent(sharing_name + ' ' + sharing_url), 'sharertwt', 'toolbar=0,status=0,width=640,height=445');  

Commenti