projects
/
pgpooladmin.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3022a95
)
Replace 'true' to 'on' in isMasterSlaveMode() and isReplicationMode().
author
Nozomi Anzai
<anzai@sraoss.co.jp>
Fri, 11 May 2012 07:54:03 +0000
(16:54 +0900)
committer
Nozomi Anzai
<anzai@sraoss.co.jp>
Fri, 11 May 2012 07:54:03 +0000
(16:54 +0900)
(replaced in V3.0, but some of that remained.)
common.php
patch
|
blob
|
blame
|
history
diff --git
a/common.php
b/common.php
index 6b97d63c5c94e1f6526ae818be6cbff784ab0348..3099c51915ef08ebeaf4f1943d8109605e1d12d6 100644
(file)
--- a/
common.php
+++ b/
common.php
@@
-214,7
+214,7
@@
function isParallelMode()
{
$params = readConfigParams(array('parallel_mode'));
- if ($params['parallel_mode'] == '
true
') {
+ if ($params['parallel_mode'] == '
on
') {
return TRUE;
} else {
return FALSE;
@@
-354,7
+354,7
@@
function isReplicationMode()
{
$params = readConfigParams(array('replication_mode'));
- if ($params['replication_mode'] == '
true
') {
+ if ($params['replication_mode'] == '
on
') {
return TRUE;
} else {
return FALSE;