Warning: wordwrap() has been disabled for security reasons in /usr/export/www/hosting/..../mkportal/modules/blog/menudx.php on line 75 Warning: wordwrap() has been disabled for security reasons in /usr/export/www/hosting/..../mkportal/modules/blog/menudx.php on line 123SOLUTION:
1. You can ask your webhost to enable the php wordwrap() function for you.
2. Or you can edit MKPortal.
FIND ALL in mkportal/modules/blog/menudx.php (occurs 3 places in the file)
$post = wordwrap($post, 20, "n", 1);Comment out these lines like this...
//$post = wordwrap($post, 20, "n", 1);The problem is that now long words such as URLs will stretch your blocks. So I recommend that you cut the preview to about 20 characters by also editing these lines...
FIND ALL in mkportal/modules/blog/menudx.php (occurs 3 places in the file)
$post = substr ($post, 0, 80);REPLACE WITH:
$post = substr ($post, 0, 20);













