This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: data/class/SC_CheckError.php | |
| =================================================================== | |
| --- data/class/SC_CheckError.php (リビジョン 23348) | |
| +++ data/class/SC_CheckError.php (作業コピー) | |
| @@ -851,7 +851,7 @@ | |
| return; | |
| } | |
| $this->createParam($value); | |
| - if (strlen($this->arrParam[$value[1]]) > 0 && !preg_match("/^[[:alnum:]_\.-]+$/i", $this->arrParam[$value[1]]) || preg_match('/[\\]/' ,$this->arrParam[$value[1]])) { | |
| + if (strlen($this->arrParam[$value[1]]) > 0 && preg_match("/[^[:alnum:]_.\\-]/", $this->arrParam[$value[1]])) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: data/class/db/SC_DB_DBFactory.php | |
| =================================================================== | |
| --- data/class/db/SC_DB_DBFactory.php (リビジョン 23329) | |
| +++ data/class/db/SC_DB_DBFactory.php (作業コピー) | |
| @@ -70,7 +70,8 @@ | |
| 'protocol' => 'tcp', | |
| 'hostspec' => DB_SERVER, | |
| 'port' => DB_PORT, | |
| - 'database' => DB_NAME | |
| + 'database' => DB_NAME, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| * This file is part of EC-CUBE | |
| * | |
| * Copyright(c) 2000-2013 LOCKON CO.,LTD. All Rights Reserved. | |
| * | |
| * http://www.lockon.co.jp/ | |
| * | |
| * This program is free software; you can redistribute it and/or | |
| * modify it under the terms of the GNU General Public License |
NewerOlder