Skip to content

Commit fcf21df

Browse files
committed
fix: Add strftime compatibility code to various horde blocks
1 parent 0b4b678 commit fcf21df

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

admin/locks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @license http://www.horde.org/licenses/lgpl LGPL-2
1111
* @package Horde
1212
*/
13-
13+
use function PHP81_BC\strftime;
1414
require_once __DIR__ . '/../lib/Application.php';
1515
Horde_Registry::appInit('horde', array(
1616
'permission' => array('horde:administration:locks')

lib/Block/Account/Ldap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
2+
use function PHP81_BC\strftime;
33
/**
44
* The ldap class attempts to return user information stored in an ldap
55
* directory service.

lib/Block/Moon.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
2+
use function PHP81_BC\strftime;
33
/**
44
* @package Horde
55
*/

lib/Block/Sunrise.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
2+
use function PHP81_BC\strftime;
33
/**
44
* @package Horde
55
*/

lib/Block/Time.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
2+
use function PHP81_BC\strftime;
33
/**
44
* @package Horde
55
*/

lib/Block/Vatid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
2+
use function PHP81_BC\strftime;
33
/**
44
* @package Horde
55
*/

lib/LoginTasks/Task/LastLogin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
2+
use function PHP81_BC\strftime;
33
/**
44
* Login task to output last login information.
55
*

lib/Prefs/Special/Syncml.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
2+
use function PHP81_BC\strftime;
33
/**
44
* Special prefs handling for the 'syncmlmanagement' preference.
55
*

0 commit comments

Comments
 (0)