Skip to content

Commit

Permalink
MINOR Fixed SS_Datetime references in BrokenLinksReport and CommentAd…
Browse files Browse the repository at this point in the history
…min (fixes #6063, thanks nicolaas) (from r111786)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@112806 467b73ca-7a2a-4603-9d3b-597d59a354a9
  • Loading branch information
Sam Minnee committed Oct 19, 2010
1 parent 7a53a14 commit f491f17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/CommentAdmin.php
Expand Up @@ -92,7 +92,7 @@ public function getEditForm($id = null) {


$table->setParentClass(false); $table->setParentClass(false);
$table->setFieldCasting(array( $table->setFieldCasting(array(
'Created' => 'SSDatetime->Full', 'Created' => 'SS_Datetime->Full',
'Comment' => array('HTMLText->LimitCharacters', 150) 'Comment' => array('HTMLText->LimitCharacters', 150)
)); ));


Expand Down
2 changes: 1 addition & 1 deletion code/reports/BrokenLinksReport.php
Expand Up @@ -90,7 +90,7 @@ function columns() {
), ),
"LastEdited" => array( "LastEdited" => array(
"title" => $dateTitle, "title" => $dateTitle,
'casting' => 'SSDatetime->Full' 'casting' => 'SS_Datetime->Full'
), ),
"BrokenReason" => array( "BrokenReason" => array(
"title" => _t('BrokenLinksReport.ColumnProblemType', "Problem type") "title" => _t('BrokenLinksReport.ColumnProblemType', "Problem type")
Expand Down

0 comments on commit f491f17

Please sign in to comment.