blob: 1f24f3cc1e2f80d2e80751f54acfece35c228c95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
Prado::Using ('System.Web.UI.ActiveControls.*');
class Ticket660 extends TPage {
public function __construct() {
Prado::getApplication()->getGlobalization()->setCharset('ISO-8859-1');
parent::__construct();
}
public function changeA($sender,$param) {
$iso_text=iconv('UTF-8', 'ISO-8859-1//IGNORE', 'ÄÖÜ äöü');
$this->A->setText($this->T->getText() . $iso_text);
}
}
?>
|