mlanthaler: Small fix to prevent E_NOTICEs.

(merged from branches/gsoc)


git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@41857 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2007-09-15 00:56:26 +00:00
parent bf5c5154c4
commit e23eaf9f8d
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ abstract class LeftAndMain extends Controller {
public function show($params) {
if($params['ID']) $this->setCurrentPageID($params['ID']);
if($params['OtherID'])
if(isset($params['OtherID']))
Session::set('currentMember', $params['OtherID']);
if(Director::is_ajax()) {