Navigation Menu

Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yama committed Oct 14, 2015
1 parent 8af93aa commit 77520c3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions manager/includes/extenders/ex_modifiers.php
Expand Up @@ -839,13 +839,14 @@ function getValueFromElement($phxkey, $value, $cmd, $opt)
if(substr($php,0,5)==='<?php') $php = substr($php,6);
if(substr($php,0,2)==='<?') $php = substr($php,3);
if(substr($php,-2)==='?>') $php = substr($php,0,-2);
$modx->snippetCache[$this->elmName.'Props'] = '';
if($this->elmName!=='')
$modx->snippetCache[$this->elmName.'Props'] = '';
}
else
$php = false;
}
else $php = false;
$modx->snippetCache[$this->elmName]= $php;
if($this->elmName!=='') $modx->snippetCache[$this->elmName]= $php;
}
if($php==='') $php=false;

Expand Down

0 comments on commit 77520c3

Please sign in to comment.