Skip to content

Commit

Permalink
Fix Text case (#29973)
Browse files Browse the repository at this point in the history
  • Loading branch information
Quy authored Jul 4, 2020
1 parent 5355e42 commit 6b4c059
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</td>
<td>
<a href="<?php echo $this->updateInfo['object']->downloadurl->_data; ?>" target="_blank" rel="noopener noreferrer"
title="<?php echo TEXT::sprintf('JBROWSERTARGET_NEW_TITLE', $this->updateInfo['object']->downloadurl->_data); ?>">
title="<?php echo Text::sprintf('JBROWSERTARGET_NEW_TITLE', $this->updateInfo['object']->downloadurl->_data); ?>">
<?php echo $this->updateInfo['object']->downloadurl->_data; ?>
</a>
</td>
Expand All @@ -51,7 +51,7 @@
</td>
<td>
<a href="<?php echo $this->updateInfo['object']->get('infourl')->_data; ?>" target="_blank" rel="noopener noreferrer"
title="<?php echo TEXT::sprintf('JBROWSERTARGET_NEW_TITLE', $this->updateInfo['object']->get('infourl')->title); ?>">
title="<?php echo Text::sprintf('JBROWSERTARGET_NEW_TITLE', $this->updateInfo['object']->get('infourl')->title); ?>">
<?php echo $this->updateInfo['object']->get('infourl')->title; ?>
</a>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
</td>
<td>
<a href="<?php echo $this->updateInfo['object']->downloadurl->_data; ?>" target="_blank" rel="noopener noreferrer"
title="<?php echo TEXT::sprintf('JBROWSERTARGET_DOWNLOAD', $this->updateInfo['object']->downloadurl->_data); ?>">
title="<?php echo Text::sprintf('JBROWSERTARGET_DOWNLOAD', $this->updateInfo['object']->downloadurl->_data); ?>">
<?php echo $this->updateInfo['object']->downloadurl->_data; ?>
</a>
</td>
Expand All @@ -59,7 +59,7 @@
</td>
<td>
<a href="<?php echo $this->updateInfo['object']->get('infourl')->_data; ?>" target="_blank" rel="noopener noreferrer"
title="<?php echo TEXT::sprintf('JBROWSERTARGET_NEW_TITLE', $this->updateInfo['object']->get('infourl')->title); ?>">
title="<?php echo Text::sprintf('JBROWSERTARGET_NEW_TITLE', $this->updateInfo['object']->get('infourl')->title); ?>">
<?php echo $this->updateInfo['object']->get('infourl')->title; ?>
</a>
</td>
Expand Down

0 comments on commit 6b4c059

Please sign in to comment.