Use a plain space (not  ) for empty fields in search results to ensure flush left border for results without an author field HEAD
authorDirk Haun <dirk@haun-online.de>
Sun Nov 08 12:26:46 2009 +0100 (4 months ago)
branchHEAD
changeset 74601c2d87e8c9e2
parent 74590f9a8d809cc5
child 7461026789ae2533
Use a plain space (not &nbsp;) for empty fields in search results to ensure flush left border for results without an author field
system/classes/listfactory.class.php
     1.1 --- a/system/classes/listfactory.class.php	Sun Nov 08 12:24:59 2009 +0100
     1.2 +++ b/system/classes/listfactory.class.php	Sun Nov 08 12:26:46 2009 +0100
     1.3 @@ -747,7 +747,7 @@
     1.4                          $list_templates->parse('item_field', 'field', true);
     1.5                      } else {
     1.6                          // Write an empty field
     1.7 -                        $list_templates->set_var('field_text', '&nbsp;');
     1.8 +                        $list_templates->set_var('field_text', ' ');
     1.9                          $list_templates->parse('item_field', 'field', true);
    1.10                      }
    1.11                  }