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.92 and 1.93

version 1.92, 2003/08/16 01:41:26 version 1.93, 2003/08/16 14:01:17
Line 19 
Line 19 
  * http://www.platon.sk/projects/phpMyEdit/   * http://www.platon.sk/projects/phpMyEdit/
  */   */
   
 /* $Platon: phpMyEdit/phpMyEdit.class.php,v 1.91 2003/07/29 14:45:02 nepto Exp $ */  /* $Platon: phpMyEdit/phpMyEdit.class.php,v 1.92 2003/08/16 01:41:26 nepto Exp $ */
   
 /*  This is a generic table editing program. The table and fields to be  /*  This is a generic table editing program. The table and fields to be
         edited are defined in the calling program.          edited are defined in the calling program.
Line 390  class phpMyEdit
Line 390  class phpMyEdit
          */           */
         function fqn($field, $use_qfx = false, $dont_desc = false, $dont_cols = false) /* {{{ */          function fqn($field, $use_qfx = false, $dont_desc = false, $dont_cols = false) /* {{{ */
         {          {
                 preg_match('/^\d*$/', $field) || $field = array_search($field, $this->fds);                  is_numeric($field) || $field = array_search($field, $this->fds);
                   // use_qfx
                   if ($use_qfx)
                           return 'qf'.$field;
                 // on copy/change always use simple key retrieving                  // on copy/change always use simple key retrieving
                 if ($this->add_operation()                  if ($this->add_operation()
                                 || $this->copy_operation()                                  || $this->copy_operation()
Line 432  class phpMyEdit
Line 435  class phpMyEdit
                         if (is_array($this->fdd[$this->fds[$field]]['values2'])) {                          if (is_array($this->fdd[$this->fds[$field]]['values2'])) {
                         }                          }
                 }                  }
   
                 // what to do with $format XXX  
                 if ($use_qfx)  
                         $ret = 'qf'.$field;  
                 // return the value  
                 return $ret;                  return $ret;
         } /* }}} */          } /* }}} */
   

Legend:
Removed from v.1.92  
changed lines
  Added in v.1.93

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