mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-08-24 17:36:39 +00:00
Merge branch 'php4-constructor-removal' into 'master'
replace php4 style constructors with __construct See merge request davical-project/davical!50
This commit is contained in:
commit
04bf91cf5c
@ -60,7 +60,7 @@ class HTTPAuthSession {
|
||||
/**
|
||||
* The constructor, which just calls the type supplied or configured
|
||||
*/
|
||||
function HTTPAuthSession() {
|
||||
function __construct() {
|
||||
global $c;
|
||||
|
||||
if ( ! empty($_SERVER['PHP_AUTH_DIGEST'])) {
|
||||
|
||||
@ -59,7 +59,7 @@ class PublicSession {
|
||||
/**
|
||||
* The constructor, which just calls the actual type configured
|
||||
*/
|
||||
function PublicSession() {
|
||||
function __construct() {
|
||||
global $c;
|
||||
|
||||
$principal = new Principal('username','unauthenticated');
|
||||
|
||||
@ -48,7 +48,7 @@ class CalDAVClient {
|
||||
* @param string $pass The password for that user
|
||||
* @param string $calendar The name of the calendar (not currently used)
|
||||
*/
|
||||
function CalDAVClient( $base_url, $user, $pass, $calendar = '' ) {
|
||||
function __construct( $base_url, $user, $pass, $calendar = '' ) {
|
||||
$this->user = $user;
|
||||
$this->pass = $pass;
|
||||
$this->calendar = $calendar;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user