summary refs log tree commit diff stats
path: root/includes/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/functions.php')
-rwxr-xr-xincludes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/functions.php b/includes/functions.php index 1caef59..881bfd1 100755 --- a/includes/functions.php +++ b/includes/functions.php
@@ -124,7 +124,7 @@ function postBlogPost($title,$author,$tags,$content)
124 $upconf = "UPDATE config SET value = \"" . date('md') . "\" WHERE name = \"lastUpdate\""; 124 $upconf = "UPDATE config SET value = \"" . date('md') . "\" WHERE name = \"lastUpdate\"";
125 $upconf2 = mysql_query($upconf); 125 $upconf2 = mysql_query($upconf);
126 126
127 preg_match_all('|<a\s[^>]*href="([^"]+)"|i', parseBBCode($content), $matches); 127 preg_match_all('|<a\s[^>]*href="([^"]+)"|i', parseText($content), $matches);
128 128
129 foreach ($matches[1] as $link) 129 foreach ($matches[1] as $link)
130 { 130 {