mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Fix Oracle database backup (Bug #46715)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9598 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
d8b0f2f310
commit
ce144ab0ba
2 changed files with 4 additions and 2 deletions
|
@ -108,6 +108,7 @@
|
||||||
<li>[Fix] Show error if hostname lookup doesn't return a valid IP address when banning. (Bug #45585 - Patch by bantu)</li>
|
<li>[Fix] Show error if hostname lookup doesn't return a valid IP address when banning. (Bug #45585 - Patch by bantu)</li>
|
||||||
<li>[Fix] Incorrect layout when loading PM-draft (Bug #38435 - Patch by nickvergessen)</li>
|
<li>[Fix] Incorrect layout when loading PM-draft (Bug #38435 - Patch by nickvergessen)</li>
|
||||||
<li>[Fix] Wrong message shown to user, when adding bots to friends/foes. (Bug #40205 - Patch by nickvergessen)</li>
|
<li>[Fix] Wrong message shown to user, when adding bots to friends/foes. (Bug #40205 - Patch by nickvergessen)</li>
|
||||||
|
<li>[Fix] Fix Oracle database backup (Bug #46715)</li>
|
||||||
<li>[Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.</li>
|
<li>[Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.</li>
|
||||||
<li>[Change] Add index on log_time to the log table to prevent slowdown on boards with many log entries. (Bug #44665 - Patch by bantu)</li>
|
<li>[Change] Add index on log_time to the log table to prevent slowdown on boards with many log entries. (Bug #44665 - Patch by bantu)</li>
|
||||||
<li>[Change] Template engine now permits to a limited extent variable includes.</li>
|
<li>[Change] Template engine now permits to a limited extent variable includes.</li>
|
||||||
|
|
|
@ -1854,7 +1854,8 @@ class oracle_extractor extends base_extractor
|
||||||
// Build the SQL statement to recreate the data.
|
// Build the SQL statement to recreate the data.
|
||||||
for ($i = 0; $i < $i_num_fields; $i++)
|
for ($i = 0; $i < $i_num_fields; $i++)
|
||||||
{
|
{
|
||||||
$str_val = $row[$ary_name[$i]];
|
// Oracle uses uppercase - we use lowercase
|
||||||
|
$str_val = $row[strtolower($ary_name[$i])];
|
||||||
|
|
||||||
if (preg_match('#char|text|bool|raw#i', $ary_type[$i]))
|
if (preg_match('#char|text|bool|raw#i', $ary_type[$i]))
|
||||||
{
|
{
|
||||||
|
@ -1885,7 +1886,7 @@ class oracle_extractor extends base_extractor
|
||||||
}
|
}
|
||||||
|
|
||||||
$schema_vals[$i] = $str_quote . $str_val . $str_quote;
|
$schema_vals[$i] = $str_quote . $str_val . $str_quote;
|
||||||
$schema_fields[$i] = '"' . $ary_name[$i] . "'";
|
$schema_fields[$i] = '"' . $ary_name[$i] . '"';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Take the ordered fields and their associated data and build it
|
// Take the ordered fields and their associated data and build it
|
||||||
|
|
Loading…
Add table
Reference in a new issue