@@ -100,7 +100,7 @@ Var AllMem
100100Var FreeMem
101101Var shared_buffers
102102Var work_mem
103- Var needOptimiztion
103+ Var needOptimization
104104Var rButton1
105105Var rButton2
106106
@@ -474,7 +474,7 @@ Section $(PostgreSQLString) sec1
474474 !insertmacro _ReplaceInFile " $DATA_DIR\postgresql.conf" " #logging_collector = off" " logging_collector = on"
475475 !insertmacro _ReplaceInFile " $DATA_DIR\postgresql.conf" " #log_line_prefix = ''" " log_line_prefix = '%t '"
476476
477- ${if} $needOptimiztion == " 1"
477+ ${if} $needOptimization == " 1"
478478 ${if} $shared_buffers != " "
479479 ${ConfigWrite} " $DATA_DIR\postgresql.conf" " shared_buffers = " " $shared_buffers$\t$\t # min 128kB" $R0
480480 ${endif}
@@ -1743,7 +1743,7 @@ Function nsDialogOptimization
17431743 ${NSD_CreateRadioButton} 0 70u 200u 24U " $(DLG_OPT3)"
17441744 Pop $rButton1
17451745
1746- ${if} $needOptimiztion == " 1"
1746+ ${if} $needOptimization == " 1"
17471747 ${NSD_SetState} $rButton2 ${BST_CHECKED}
17481748 ${else}
17491749 ${NSD_SetState} $rButton1 ${BST_CHECKED}
@@ -1759,9 +1759,9 @@ Function nsDialogsOptimizationPageLeave
17591759 ${NSD_GetState} $rButton2 $0
17601760
17611761 ${if} $0 == ${BST_CHECKED}
1762- StrCpy $needOptimiztion " 1"
1762+ StrCpy $needOptimization " 1"
17631763 ${else}
1764- StrCpy $needOptimiztion " 0"
1764+ StrCpy $needOptimization " 0"
17651765 ${endif}
17661766FunctionEnd
17671767
@@ -1816,7 +1816,7 @@ ${EndIf}
18161816 ; AccessControl::GetCurrentUserName
18171817 ; Pop $0 ; or "error"
18181818 ; MessageBox MB_OK "$0"
1819- StrCpy $needOptimiztion " 1"
1819+ StrCpy $needOptimization " 1"
18201820
18211821 StrCpy $isDataDirExist 0
18221822
@@ -1906,6 +1906,11 @@ ${EndIf}
19061906 ${if} " $1" != " "
19071907 StrCpy $isEnvVar $1
19081908 ${endif}
1909+
1910+ ReadINIStr $1 $0 options needoptimization
1911+ ${if} " $1" != " "
1912+ StrCpy $needOptimization " $1"
1913+ ${endif}
19091914FunctionEnd
19101915
19111916Function func1
0 commit comments