2014-01-09 Junichi Satoh <junichi@rworks.jp>
* godmode/servers/plugin.php: Fixed that unexpected strings are set in parameter macro fields when multi-byte characters are entered. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9302 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
9bd1c8947b
commit
613df874b7
|
@ -1,3 +1,8 @@
|
||||||
|
2014-01-09 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
|
* godmode/servers/plugin.php: Fixed that unexpected strings are set
|
||||||
|
in parameter macro fields when multi-byte characters are entered.
|
||||||
|
|
||||||
2014-01-08 Miguel de Dios <miguel.dedios@artica.es>
|
2014-01-08 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* general/header.php: fixed the empty action with trying to write
|
* general/header.php: fixed the empty action with trying to write
|
||||||
|
|
|
@ -406,7 +406,7 @@ else {
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
$macros = json_encode($macros);
|
$macros = io_json_mb_encode($macros);
|
||||||
|
|
||||||
$values = array(
|
$values = array(
|
||||||
'name' => $plugin_name,
|
'name' => $plugin_name,
|
||||||
|
@ -460,7 +460,7 @@ else {
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
$macros = json_encode($macros);
|
$macros = io_json_mb_encode($macros);
|
||||||
|
|
||||||
$values = array(
|
$values = array(
|
||||||
'name' => $plugin_name,
|
'name' => $plugin_name,
|
||||||
|
|
Loading…
Reference in New Issue