Platon Technologies
not logged in Login Registration
EnglishSlovak
open source software development celebrating 10 years of open source development! Friday, March 29, 2024

Diff for phpMyEdit/phpMyEdit.class.php between version 1.29 and 1.30

version 1.29, 2002/11/18 20:49:30 version 1.30, 2002/11/22 00:21:49
Line 19 
Line 19 
  * http://www.platon.sk/projects/phpMyEdit/   * http://www.platon.sk/projects/phpMyEdit/
  */   */
   
 /* $Platon: phpMyEdit/phpMyEdit.class.php,v 1.28 2002/11/14 23:29:58 nepto Exp $ */  /* $Platon: phpMyEdit/phpMyEdit.class.php,v 1.29 2002/11/18 20:49:30 nepto Exp $ */
   
 /*      phpMyEdit intro {{{ */  /*      phpMyEdit intro {{{ */
 /*  /*
Line 697  class phpMyEdit
Line 697  class phpMyEdit
   
         function processed($k) /* {{{ */          function processed($k) /* {{{ */
         {          {
                 $options = $this->fdd[$k]['options'];                  $options = @$this->fdd[$k]['options'];
                 return empty($options) ||                  if (! isset($options))
                         ($this->saveadd    == $this->labels['Save'] && stristr($options, 'A')) ||                          return true;
                         ($this->moreadd    == $this->labels['More'] && stristr($options, 'A')) ||                  return /* empty($options) || */
                         ($this->savechange == $this->labels['Save'] && stristr($options, 'C')) ||                          // XXX: woof woof woof hack, probably brokes BC, but here BC == BB (bad behaviour)
                         ($this->savechange == $this->labels['Save'] && stristr($options, 'P')) ||                          ($this->saveadd    == $this->labels['Save']  && stristr($options, 'A')) ||
                         ($this->savedelete == $this->labels['Save'] && stristr($options, 'D'));                          ($this->moreadd    == $this->labels['More']  && stristr($options, 'A')) ||
                           ($this->savechange == $this->labels['Save']  && stristr($options, 'C')) ||
                           ($this->morechange == $this->labels['Apply'] && stristr($options, 'C')) ||
                           ($this->savechange == $this->labels['Save']  && stristr($options, 'P')) ||
                           ($this->savedelete == $this->labels['Save']  && stristr($options, 'D'));
         } /* }}} */          } /* }}} */
   
         function displayed($k) /* {{{ */          function displayed($k) /* {{{ */

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30

Platon Group <platon@platon.org> http://platon.org/
Copyright © 2002-2006 Platon Group
Site powered by Metafox CMS
Go to Top