drupal: Replaced span tags with div tags to fix firefox not word-wrapping. Fixes DBOINCP-244

This commit is contained in:
Shawn Kwang 2016-05-26 12:35:28 -05:00
parent 617f2d578b
commit 6bcf2867f0
3 changed files with 9 additions and 6 deletions

View File

@ -19,6 +19,7 @@
* the view is modified.
*/
?>
<span class="task-name">
<?php // Fix wrapping issue in Firefox (see DBOINCP-244) - replaced span tag with div ?>
<div class="task-name">
<?php print l($row->result_name, "task/{$row->id}"); ?>
</span>
</div>

View File

@ -19,6 +19,7 @@
* the view is modified.
*/
?>
<span class="task-name">
<?php // Fix wrapping issue in Firefox (see DBOINCP-244) - replaced span tag with div ?>
<div class="task-name">
<?php print l($row->result_name, "task/{$row->id}"); ?>
</span>
</div>

View File

@ -19,6 +19,7 @@
* the view is modified.
*/
?>
<span class="task-name">
<?php // Fix wrapping issue in Firefox (see DBOINCP-244) - replaced span tag with div ?>
<div class="task-name">
<?php print l($row->result_name, "task/{$row->id}"); ?>
</span>
</div>