Non posso, il problema lo da soltanto dal lato backoffice che sta all'interno di una area riservata protetta da password; stranamente tutto il lato visibile al pubblico continua a funzionare perfettamente. Però posso mettervi una screen (si capisce al volo il problema).
Così è corretto (ad esempio con chrome):
Così non lo è più da sabato (ad esempio con Safari):
Notate in basso il commento inserito dal cliente che non si adatta più alla textarea come invece faceva prima.
Questo è il codice che non funziona più qualunque modifica io faccia:
Codice PHP:
## Zero Announcements Found
if (mysql_num_rows($purchases) == 0)
echo "<tr class=\"rownormal\"><td>Non sono presenti Ordini.</td></tr>\n";
?>
</table>
</td>
<td valign="top" width="100%">
<td width="300px" nowrap="nowrap" class="rowselected" valign="top">
<?php
## Modify/Delete Attributes
if (isset($_GET['id']) && trim($_GET['id']) != "" && mysql_num_rows(mysql_query("select * from {$config['prefix']}Purchases where id='{$_GET['id']}'")) != 0)
switch($_GET['action']) {
## Delete an Announcement
case "info":
## Display the Information Form
$info = mysql_query("select * from {$config['prefix']}Purchases where id='{$_GET['id']}'");
if (mysql_num_rows($info)) {
$data = mysql_fetch_array($info);
echo "<table border=\"0px\" width=\"100%\">\n" .
"<tr><td class=\"sectitle\">[b]Dettaglio Spesa:[/b]</td></tr>\n" .
"<tr><td class=\"xsmall\">[b]Sito di Provenienza Ordine:[/b]</td></tr>\n" .
"<tr><td class=\"xsmall\">$smart</td></tr>\n" .
"<tr><td class=\"xsmall\">[b]Cod. Cliente, Intestatario Fattura:[/b]</td></tr>\n" .
"<tr><td class=\"xsmall\">{$data['userid']}, {$data['first_name']} {$data['last_name']}</td></tr>\n" .
"<tr><td class=\"xsmall\">[b]{$esito}[/b]</td></tr>\n" .
"<tr><td class=\"xsmall\">[b]Consegna e Spese di Trasporto:[/b]</td></tr>\n" .
"<tr><td class=\"xsmall\">{$data['billing_day']} {$data['billing_time']}, {$data['billing_trasporto']}</td></tr>\n" .
"<tr><td class=\"xsmall\">[b]Ascensore, Piano:[/b]</td></tr>\n" .
"<tr><td class=\"xsmall\">$ascen , {$data['shipping_piano']}</td></tr>\n" .
"<tr><td class=\"xsmall\">[b]Prodotti:[/b]</td></tr>\n" .
"<tr><td class=\"xsmall\">{$data['products']}</td></tr>\n" .
"<tr><td class=\"xsmall\">[b]Totale Spesa:[/b]</td></tr>\n" .
"<tr><td class=\"xsmall\">{$data['payment_gross']}</td></tr>\n" .
"<tr><td class=\"xsmall\">[b]Città, Prov., CAP, Cod.Fisc., P.IVA:[/b]</td></tr>\n" .