diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 10:43:15 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 10:43:15 -0200 |
commit | 42c218e6f393324a875f7ce677d69cc066486845 (patch) | |
tree | aa960dc91754f5c403c1bd884863f7d80330feb8 | |
parent | 606ab3ded604001ea66fc1d0906805e0610ec405 (diff) | |
download | nuvemdario-42c218e6f393324a875f7ce677d69cc066486845.tar.gz nuvemdario-42c218e6f393324a875f7ce677d69cc066486845.tar.bz2 |
Custom common methods (3)
-rw-r--r-- | common_methods.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common_methods.php b/common_methods.php index 958b4e2..2a15e4c 100644 --- a/common_methods.php +++ b/common_methods.php @@ -223,7 +223,7 @@ function nuvemdario_links_woker($links, $attributes = array('class' => 'links')) $extra_class .= 'last '; } - $link_output = get_html_link_output($link); + $link_output = nuvemdario_get_html_link_output($link); if (!empty($class)) { if (strpos ($key, "comment") !== FALSE) { @@ -258,7 +258,7 @@ if ($index > 0 && !empty($link_output) && !empty($output)) { return $output; } -function get_html_link_output($link) { +function nuvemdario_get_html_link_output($link) { $output = ''; // Is the title HTML? $html = isset($link['html']) ? $link['html'] : NULL; |