diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-05-01 21:07:08 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-05-01 21:07:08 +0200 |
commit | e2fb094693e94d425fa9f59278806ef636fc127b (patch) | |
tree | c6c6b9535faa7f32b78fc3b0fedd24d85ffd0752 /apps/files_versions/templates | |
parent | ab584719049965f78d244879ce2a400a1955eec6 (diff) | |
download | nextcloud-server-e2fb094693e94d425fa9f59278806ef636fc127b.tar.gz nextcloud-server-e2fb094693e94d425fa9f59278806ef636fc127b.zip |
some more porting
Diffstat (limited to 'apps/files_versions/templates')
-rwxr-xr-x[-rw-r--r--] | apps/files_versions/templates/history.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_versions/templates/history.php b/apps/files_versions/templates/history.php index 2ef0c89e229..3b29625b3b0 100644..100755 --- a/apps/files_versions/templates/history.php +++ b/apps/files_versions/templates/history.php @@ -22,7 +22,7 @@ if( isset( $_['message'] ) ) { foreach ( $_['versions'] as $v ) { echo ' '; - echo OC_Util::formatDate( $v ); + echo OCP\Util::formatDate( $v ); echo ' <a href="history.php?path='.urlencode( $_['path'] ).'&revert='. $v .'" class="button">Revert</a><br /><br />'; } |