\documentclass{article}
\usepackage{ulem}
\usepackage{graphicx}
\usepackage{hyperref}
\pagestyle{headings}
\begin{document}
\subsection{Notes}
\textbf{IMP 6, Horde 5}<br />
\textbf{Modifies topbar to display user id beside date}.

\section{Tested on Debian 6.0 (squeeze), Horde 5.0.3 and IMP 6.0.3.}
\subsection{Modification}
<table class="horde-table">File & Variables, Function(s) \\
\hline
horde/lib/View/Topbar.php &  \\
\hline
\textit{Last updated 2013-01-16} &  \\
\hline
</table>

\noindent\rule{\textwidth}{1pt}
\subsection{Descriptions}

\noindent\rule{\textwidth}{1pt}
\subsubsection{horde/lib/View/Topbar.php}
Backup your original horde/lib/View/Topbar.php. Edit Topbar.php and modify line 78:<br />
\textbf{Form:}

<pre><code class="language-php">
        /* Sub bar. */
        \$this->date = strftime(\$GLOBALS['prefs']->getValue('date\_format'));
</code></pre>
\textbf{To:}

<pre><code class="language-php">
        /* Sub bar. */
        \$this->date = strftime(\$GLOBALS['prefs']->getValue('date\_format')) . ' - ' 
            . \$GLOBALS['injector']->getInstance('Horde\_Core\_Factory\_Identity')->create()->getName();
</code></pre>
To display user name and email address:

<pre><code class="language-php">
        /* Sub bar. */
        \$this->date = strftime(\$GLOBALS['prefs']->getValue('date\_format')) . ' - ' 
            . htmlspecialchars(\$GLOBALS['injector']->getInstance('Horde\_Core\_Factory\_Identity')->create()->getDefaultFromAddress(true));
</code></pre>
\end{document}
