Recent Topics

1 Jan 13, 2008 20:32    

My b2evolution Version: 2.3.x

For the most part is has been a smooth upgrade from 1.10 to 2.3.0-rc1, until I took a look at the comments from my posts. Right after the <div class="bCommentTitle"> I see this:

[block]Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /var/www/html/blogsDEV/inc/comments/model/_comment.class.php on line 910
from: Neal [Visitor] Email[/block]

2 Jan 13, 2008 20:47

The $Comment->permanent_link() has changed to summat like this :

					$Comment->permanent_link( array(
							'before'    => '',
							'after'     => ' '.T_('from:').' ',
							'text' 			=> T_('Comment'),
							'nofollow'	=> true,
						) );

¥

3 Jan 13, 2008 21:42

Well...

Part of my problem would be in [u]not[/u] using the latest version of _item_feedback.inc.php after I copied one from /skins into /skins/myskinfolder.

DUH!!

Now to find that pesky Read More and take out the words "Follow Up:"

4 Jan 13, 2008 22:10

I found that one recently. Look in _item_content.inc.php for something close to this, then make it be even closer:

		$Item->more_link( array(
				'before'    => $params['before_more_link'],
				'after'     => $params['after_more_link'],
				'link_text' => $params['more_link_text'],
				'anchor_text' => 'Follow up be GONE!',
			) );


You might find it in skins and you might want to move it to skins/yourskin.

5 Jan 13, 2008 22:54

Thanks, EdB.

I was looking at that file for the past hour. Didn't think I'd be looking for stealth content and have to ADD a line.

Of course, i had to make it

'anchor_text' => ' ',

since I didn't want the phrase "Follow up be GONE!" appearing all over the place, and I made it one of the $params so I could find it easier next time.


Form is loading...