]> git.pld-linux.org Git - packages/dokuwiki.git/blame - dokuwiki-http_auth-option.patch
- export to pdf also for dw2pdf plugin
[packages/dokuwiki.git] / dokuwiki-http_auth-option.patch
CommitLineData
7df7f76f
ER
1--- dokuwiki-rc2009-01-26/conf/dokuwiki.php~ 2009-01-27 12:56:43.000000000 +0200
2+++ dokuwiki-rc2009-01-26/conf/dokuwiki.php 2009-01-27 12:57:04.936215007 +0200
3@@ -75,6 +75,7 @@
110e8aa6
ER
4 $conf['disableactions'] = ''; //comma separated list of actions to disable
5 $conf['sneaky_index'] = 0; //check for namespace read permission in index view (0|1) (1 might cause unexpected behavior)
6 $conf['auth_security_timeout'] = 900; //time (seconds) auth data is considered valid, set to 0 to recheck on every page view
c9dcec0a 7+$conf['http_auth'] = 1; //allows HTTP authorization (SSO) from PHP_AUTH_USER/PHP_AUTH_PW variables
7df7f76f 8 $conf['securecookie'] = 1; //never send HTTPS cookies via HTTP
110e8aa6
ER
9
10 /* Advanced Options */
c4df8b0c
ER
11--- dokuwiki-rc2010-10-07/inc/auth.php~ 2010-10-07 21:25:10.000000000 +0300
12+++ dokuwiki-rc2010-10-07/inc/auth.php 2010-10-07 21:26:19.795893378 +0300
13@@ -77,7 +77,7 @@
14 }
110e8aa6 15
c4df8b0c
ER
16 // if no credentials were given try to use HTTP auth (for SSO)
17- if(empty($_REQUEST['u']) && empty($_COOKIE[DOKU_COOKIE]) && !empty($_SERVER['PHP_AUTH_USER'])){
18+ if($conf['http_auth'] && empty($_REQUEST['u']) && empty($_COOKIE[DOKU_COOKIE]) && !empty($_SERVER['PHP_AUTH_USER'])){
19 $_REQUEST['u'] = $_SERVER['PHP_AUTH_USER'];
20 $_REQUEST['p'] = $_SERVER['PHP_AUTH_PW'];
21 $_REQUEST['http_credentials'] = true;
This page took 0.080464 seconds and 4 git commands to generate.