We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b780e5 commit 4697293Copy full SHA for 4697293
www/commons/Defaults.php
@@ -23,7 +23,7 @@ function getDefaultKoha()
23
"koha_intra_port" => "80",
24
"koha_intra_basic_username" => "",
25
"koha_intra_basic_password" => "",
26
- "koha_intra_username" => $_GET['username'],
27
- "koha_intra_password" => $_GET['password']
+ "koha_intra_username" => isset($_GET['username']) ? $_GET['username'] : '',
+ "koha_intra_password" => isset($_GET['password']) ? $_GET['password'] : ''
28
];
29
}
0 commit comments