ElkArte Community

Elk Development => Bug Reports => Exterminated Bugs => Topic started by: emanuele on October 19, 2013, 04:00:13 pm

Title: Small bug in debug
Post by: emanuele on October 19, 2013, 04:00:13 pm
When someone has some other commits to push:
Code: (find) [Select]
				$context['debug']['sheets'][] = $params['basename'] . '(' . basename($params['url']) . ')';
Code: (replace with) [Select]
				$context['debug']['sheets'][] = $params['basename'] . (!empty($params['url']) ? '(' . basename($params['url']) . ')' : '');

;)
Title: Re: Small bug in debug
Post by: Spuds on October 20, 2013, 11:42:41 am
Added this fix to a pending PR
Title: Re: Small bug in debug
Post by: TE on October 20, 2013, 01:03:02 pm
merged ;)