Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
czaks committed Mar 10, 2015
1 parent fe7e9c5 commit 0062125
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/functions.php
Expand Up @@ -2434,8 +2434,8 @@ function diceRoller($post) {
function slugify($post) {
$slug = "";

if (isset($post['thread']) && $post['thread'])
$slug = $post['thread'];
if (isset($post['subject']) && $post['subject'])
$slug = $post['subject'];
elseif (isset ($post['body_nomarkup']) && $post['body_nomarkup'])
$slug = $post['body_nomarkup'];
elseif (isset ($post['body']) && $post['body'])
Expand Down

0 comments on commit 0062125

Please sign in to comment.