Announcement

Collapse
No announcement yet.

Still not searching product reference field

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #46
    If you are going to change the references, I got my fix working. The line was correct, but the location in the code was wrong. Actinic already removed the '-'.
    In search.pm, after the line:
    # Split words on the same boundaries as the C++ does
    Put this line:
    $$psSearchString =~ s/(\S+)\-/ /gio;

    This will change CR-AS-CD-S520 to S520 to search on the significant part of the reference. Otherwise it will match on cr,as,and cd too in this example.
    Bob Ladden

    Comment


      #47
      Thanks Bob, when I can get things sorted with the site in general I'll certainly take the time to impliment that. Thanks for taking the time.
      Regards, Tom

      Comment


        #48
        Gave it a try but no luck so far. Do I need to take the old line out or add the "-" to the search string now?

        Perhaps I missed doing something.

        Thanks Bob.
        Regards, Tom

        Comment


          #49
          The '-' should be out.

          Post the search log.
          Bob Ladden

          Comment


            #50
            Also be sure you put the new line in the new location I specified.
            Bob Ladden

            Comment

            Working...
            X