Changeset 1274 in ExiteCMS
- Timestamp:
- 02/12/08 14:46:25 (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
includes/forum_functions_include.php (modified) (1 diff)
-
themes/ExiteCMS/templates/templates/_stylesheets.tpl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/forum_functions_include.php
r1273 r1274 400 400 $result = dbquery("SELECT DISTINCT tag FROM ".$db_prefix."wiki_pages"); 401 401 while ($data = dbarray($result)) { 402 $search[] = "/(\ b".$data['tag']."\b)/is";403 $replace[] = " [wiki]\\1[/wiki]";402 $search[] = "/(\s)(".$data['tag'].")(\s)/is"; 403 $replace[] = "\\1[wiki]\\2[/wiki]\\3"; 404 404 } 405 405 $message = preg_replace($search, $replace, $message); -
trunk/themes/ExiteCMS/templates/templates/_stylesheets.tpl
r1273 r1274 35 35 36 36 /* wiki links */ 37 a:link.wiki_link { text-decoration:none; border-width:0px 0px 1px 0px; border-style:dotted; border-color:#9c0204; } 37 a.wiki_link:link, a.wiki_link:visited 38 { text-decoration:none; border-width:0px 0px 2px 0px; border-style:dotted; border-color:#9c0204; } 38 39 39 40 /* horizontal lines */
Note: See TracChangeset
for help on using the changeset viewer.
