Fix problem with classBrowser potentially included multiply.

This commit is contained in:
Andrew McMillan 2009-10-16 09:56:09 +13:00
parent 5bab699e14
commit dea095db04

View File

@ -10,7 +10,7 @@
*/ */
include('User.php'); include('User.php');
include('classBrowser.php'); require_once('classBrowser.php'); // DAViCalUser is included via drivers_ldap.php so this could already be loaded
include('check_UTF8.php'); include('check_UTF8.php');
include('caldav-PUT-functions.php'); include('caldav-PUT-functions.php');
@ -266,7 +266,7 @@ EOSQL;
/** /**
* Present an extra editable row at the bottom of the browse. * Present an extra editable row at the bottom of the browse.
*/ */
if ( $ef->EditMode && ('insert' != $this->WriteType) ) { if ( $ef->EditMode && ('insert' != $this->WriteType) ) {
$calendar_name = $ef->DataEntryField( '', 'text', 'path_ics', $calendar_name = $ef->DataEntryField( '', 'text', 'path_ics',
array( 'size' => 10, array( 'size' => 10,
'title' => translate('The calendar name part of the path to store your ics. E.g. the "home" part of "/caldav.php/username/home/"') 'title' => translate('The calendar name part of the path to store your ics. E.g. the "home" part of "/caldav.php/username/home/"')