mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-26 20:08:55 +00:00
Compare commits
5 commits
33c1ed132e
...
05333ec4b1
Author | SHA1 | Date | |
---|---|---|---|
|
05333ec4b1 | ||
|
954bc07de1 | ||
|
044536dffb | ||
|
6ccc6f0383 | ||
|
18a63b6d7d |
2 changed files with 21 additions and 20 deletions
|
@ -336,7 +336,10 @@ class mysqli extends \phpbb\db\driver\mysql_base
|
|||
*/
|
||||
function sql_escape($msg)
|
||||
{
|
||||
return @mysqli_real_escape_string($this->db_connect_id, $msg);
|
||||
return @mysqli_real_escape_string(
|
||||
$this->db_connect_id,
|
||||
utf8_encode_ucr($msg)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -145,7 +145,12 @@ class check_filesystem extends \phpbb\install\task_base
|
|||
// Try to create file if it does not exists
|
||||
if (!file_exists($path))
|
||||
{
|
||||
$fp = @fopen($path, 'w');
|
||||
if (!is_resource($fp = @fopen($path, 'w')))
|
||||
{
|
||||
$exists = $writable = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
@fclose($fp);
|
||||
try
|
||||
{
|
||||
|
@ -155,21 +160,14 @@ class check_filesystem extends \phpbb\install\task_base
|
|||
$exists = true;
|
||||
}
|
||||
catch (\phpbb\filesystem\exception\filesystem_exception $e)
|
||||
{
|
||||
// Do nothing
|
||||
}
|
||||
}
|
||||
|
||||
if (file_exists($path))
|
||||
{
|
||||
if (!$this->filesystem->is_writable($path))
|
||||
{
|
||||
$writable = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
}
|
||||
else if (!$this->filesystem->is_writable($path))
|
||||
{
|
||||
$exists = $writable = false;
|
||||
$writable = false;
|
||||
}
|
||||
|
||||
$this->set_test_passed(($exists && $writable) || $failable);
|
||||
|
|
Loading…
Add table
Reference in a new issue