[Rt-commit] rt branch, 3.9-trunk, updated. rt-3.8.8-791-g3db7d2c

Jesse Vincent jesse at bestpractical.com
Fri Sep 17 21:38:11 EDT 2010


The branch, 3.9-trunk has been updated
       via  3db7d2ca091d4f336b743bb36024e81f3e74f94b (commit)
      from  2291e5ed5e259b24c05da8e4a4c6bd607a29891b (commit)

Summary of changes:
 share/html/Elements/ShowCustomFields |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

- Log -----------------------------------------------------------------
commit 3db7d2ca091d4f336b743bb36024e81f3e74f94b
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Thu Sep 16 16:36:35 2010 -0400

    standardize  $m->out calls in ShowCustomFields

diff --git a/share/html/Elements/ShowCustomFields b/share/html/Elements/ShowCustomFields
index 0613329..8072cd8 100644
--- a/share/html/Elements/ShowCustomFields
+++ b/share/html/Elements/ShowCustomFields
@@ -108,12 +108,12 @@ my $print_value = sub {
     if ( $cf->IncludeContentForValue ) {
        my $vid = $value->id;
        $m->out(   '<div class="object_cf_value_include" id="object_cf_value_'. $vid .'">' );
-       $m->print( loc("See also:") );
+       $m->out( loc("See also:") );
        $m->out(   '<a href="'. $value->IncludeContentForValue .'">' );
-       $m->print( $value->IncludeContentForValue );
+       $m->out( $value->IncludeContentForValue );
        $m->out(   qq{</a></div>\n} );
        $m->out(   qq{<script><!--\njQuery('#object_cf_value_$vid').load('} );
-       $m->print( $value->IncludeContentForValue );
+       $m->out( $value->IncludeContentForValue );
        $m->out(   qq{');\n--></script>\n} );
     }
 };

-----------------------------------------------------------------------


More information about the Rt-commit mailing list