| View previous topic :: View next topic |
| Author |
Message |
wcbaker Junior Member
Joined: 26 Jul 2006 Posts: 2
|
Posted: Wed Jul 26, 2006 9:33 pm Post subject: Remove comma's from tag list |
|
|
| How would I remove the commas from the tag list? |
|
| Back to top |
|
Ivan Admin
Joined: 16 Apr 2005 Posts: 340 Location: Belgrade
|
Posted: Wed Jul 26, 2006 10:10 pm Post subject: |
|
|
In simpletags.php change the line
| Code: | | if ($i<count($ttags)-1) { $technotags .= ", "; } |
to
| Code: | | if ($i<count($ttags)-1) { $technotags .= " "; } |
|
|
| Back to top |
|
wcbaker Junior Member
Joined: 26 Jul 2006 Posts: 2
|
Posted: Wed Jul 26, 2006 10:43 pm Post subject: |
|
|
Much appreciated.  |
|
| Back to top |
|
|