Fixing more quotes

This commit is contained in:
Timothy Warren 2019-02-12 15:11:59 -05:00
parent 0b25a25ad9
commit d193bcc249
3 changed files with 4 additions and 4 deletions

View File

@ -86,7 +86,7 @@ if (count($ldap['attrs']['need']) > 0) {
if ($_SESSION[APPCONFIG]->getValue('confirm','update'))
{
echo '<input type='hidden' name='cmd' value='update_confirm' />'; }
echo '<input type="hidden" name="cmd" value="update_confirm" />'; }
else
{
echo '<input type="hidden" name="cmd" value="update" />';

View File

@ -49,7 +49,7 @@ if (! strcasecmp($request['attr'],'objectclass') || get_request('meth','REQUEST'
echo '<div>';
if ($_SESSION[APPCONFIG]->getValue('confirm','update'))
{
echo '<input type='hidden' name='cmd' value='update_confirm' />'; }
echo '<input type="hidden" name="cmd" value="update_confirm" />'; }
else
{
echo '<input type="hidden" name="cmd" value="update" />';
@ -116,7 +116,7 @@ if (! strcasecmp($request['attr'],'objectclass') || get_request('meth','REQUEST'
if (($oclass->getType() == 'structural') && ! $oclass->isRelated($request['attribute']->getValues()))
{
continue;
}
}
printf('<option value="%s">%s</option>',$oclass->getName(false),$oclass->getName(false));
}

View File

@ -46,7 +46,7 @@ abstract class Visitor {
while ($class && ! method_exists($this,$call)) {
if (defined('DEBUGTMP') && DEBUGTMP)
{
printf('<font size=' - 2'><i>Class (%s): Method doesnt exist (%s,%s)</i></font><br />',$class,get_class($this),$call); }
printf('<font size=-2><i>Class (%s): Method doesnt exist (%s,%s)</i></font><br />',$class,get_class($this),$call); }
$class = get_parent_class($class);
$call = "$method$fnct$class";