Why is it in a folder called BlogThis-2008-08-04 instead of just "BlogThis". Is it supposed to cope with differing folder names? Perhaps I have something explicit in there...
That's a general setting for the forum - they are for all intents and purposes, standard posts. If you check in your global settings, you'll find the character limit for posts.
I was thinking about that. You could add that feature
This function will not cut words up, like substr normally does function cutText($string, $length) {
while ($string{$length} != " ") {
$length--;
}
return substr($string, 0, $length);
}
Some thing like that would work, then it can be set in a setting what length and to call it echo cutText($what ever the content variable is , $The length set in the admin
Simon - I've added the "read more" facility to the latest version, plus the permissions for only blogging your own posts.
Manda - currently, no. I imagine you could modify the SQL for the discussion list to exclude any with blogged posts in, but it would require a join with the comments field, so might be a little on the taxing side.
Comments
the devil is in the details
is there a way or setting that members/users are only able to tag their "own" topics ? (so no comments or such only their very very own topics)
thx
This function will not cut words up, like substr normally does
function cutText($string, $length) { while ($string{$length} != " ") { $length--; } return substr($string, 0, $length); }
Some thing like that would work, then it can be set in a setting what length and to call it
echo cutText($what ever the content variable is , $The length set in the admin
Manda - currently, no. I imagine you could modify the SQL for the discussion list to exclude any with blogged posts in, but it would require a join with the comments field, so might be a little on the taxing side.
2) Did you replace the whole folder with the new code? I know you said you modified your own.