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

Diff for phpMyEdit/phpMyEdit.class.php between version 1.212 and 1.213

version 1.212, 2008/11/11 04:46:36 version 1.213, 2010/09/20 01:08:46
Line 19 
Line 19 
  * http://platon.sk/projects/phpMyEdit/   * http://platon.sk/projects/phpMyEdit/
  */   */
   
 /* $Platon: phpMyEdit/phpMyEdit.class.php,v 1.211 2008-06-04 10:49:39 michal Exp $ */  /* $Platon: phpMyEdit/phpMyEdit.class.php,v 1.212 2008-11-11 04:46:36 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 3114  function '.$this->js['prefix'].'filter_h
Line 3114  function '.$this->js['prefix'].'filter_h
                  */                   */
   
                 // Let's do explicit quoting - it's safer                  // Let's do explicit quoting - it's safer
                 set_magic_quotes_runtime(0);                  // (but 5.3 does not have this at all)
                   if (version_compare(PHP_VERSION, '5.3.0', '<')) {
                           set_magic_quotes_runtime(0);
                   }
   
                 // Checking if language file inclusion was successful                  // Checking if language file inclusion was successful
                 if (! is_array($this->labels)) {                  if (! is_array($this->labels)) {
                         $this->error('could not locate language files', 'searched path: '.$this->dir['lang']);                          $this->error('could not locate language files', 'searched path: '.$this->dir['lang']);

Legend:
Removed from v.1.212  
changed lines
  Added in v.1.213

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