ECToo / wp-constructor

Automatically exported from code.google.com/p/wp-constructor
0 stars 0 forks source link

missing space in post footer after tag list #57

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. default install

What version of the ... are you using?
1. Wordpress: 2.9.2
2. Constructor: 0.8.0
3. Browser: FF
4. OS: Debian

What URL of your blog(s)?
1. in development still

Please provide any additional information below.

Hi, thanks for all your work on constructor.  Looks great.

There's a missing space at the end of the tag list for a post - the last
tag will be outputed with "</a>|", when you probably want "</a> |".

cheers, here's a patch:

mike@ln-dev:/var/www/fogel/wp-content/themes$ diff -r constructor
constructor.pure/
diff -r constructor/layouts/default.php constructor.pure/layouts/default.php
24c24
<                 <?php the_tags(__('Tags', 'constructor') . ': ', ', ', '
|'); ?>

---
>                 <?php the_tags(__('Tags', 'constructor') . ': ', ', ',
'|'); ?>
diff -r constructor/page.php constructor.pure/page.php
30c30
<                     <?php the_tags(__('Tags', 'constructor') . ': ', ',
', ' |'); ?>

---
>                     <?php the_tags(__('Tags', 'constructor') . ': ', ',
', '|'); ?>
diff -r constructor/single.php constructor.pure/single.php
29c29
<                     <?php the_tags(__('Tags', 'constructor') . ': ', ',
', ' |'); ?>

---
>                     <?php the_tags(__('Tags', 'constructor') . ': ', ',
', '|'); ?>
diff -r constructor/template-monocolumn.php
constructor.pure/template-monocolumn.php
31c31
<                     <?php the_tags(__('Tags', 'constructor') . ': ', ',
', ' |'); ?>

---
>                     <?php the_tags(__('Tags', 'constructor') . ': ', ',
', '|'); ?>
diff -r constructor/template-parent.php constructor.pure/template-parent.php
31c31
<                     <?php the_tags(__('Tags', 'constructor') . ': ', ',
', ' |'); ?>

---
>                     <?php the_tags(__('Tags', 'constructor') . ': ', ',
', '|'); ?>

Original issue reported on code.google.com by mjfo...@gmail.com on 21 Feb 2010 at 1:17

GoogleCodeExporter commented 9 years ago

Original comment by AntonShe...@gmail.com on 23 Feb 2010 at 7:24

GoogleCodeExporter commented 9 years ago

Original comment by AntonShe...@gmail.com on 1 Mar 2010 at 5:16