Changeset 6097

Show
Ignore:
Timestamp:
01/08/09 23:02:03 (6 months ago)
Author:
patrickw
Message:

Some Aux modules have refs, but not printing the output.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • framework3/trunk/lib/msf/base/serializer/readable_text.rb

    r5773 r6097  
    202202                output += "\n" 
    203203 
     204                # References 
     205                if (mod.references.length > 0) 
     206                        output += "References:\n" 
     207                        mod.references.each { |ref| 
     208                                output += indent + ref.to_s + "\n" 
     209                        } 
     210                        output += "\n" 
     211                end 
     212         
    204213                return output 
    205214        end