We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd958b0 commit cf4fb8eCopy full SHA for cf4fb8e
1 file changed
lib/Horde/Core/Mime/Viewer/Vcard.php
@@ -1,6 +1,7 @@
1
<?php
2
3
use Horde\Util\Util;
4
+use Horde\Date\Formatter\IcuFormatter;
5
6
/**
7
* The Horde_Core_Mime_Viewer_Vcard class renders out vCards in HTML format.
@@ -166,7 +167,7 @@ protected function _renderInline()
166
167
$birthday = new Horde_Date($birthdays[0]);
168
$html .= $this->_row(
169
Horde_Core_Translation::t('Birthday'),
- $birthday->format($prefs->getValue('date_format'), new \Horde\Date\Formatter\IcuFormatter(), $GLOBALS['language'] ?? 'en_US')
170
+ $birthday->format($prefs->getValue('date_format'), new IcuFormatter(), $GLOBALS['language'] ?? 'en_US')
171
);
172
} catch (Horde_Icalendar_Exception $e) {
173
}
0 commit comments