White space fixes
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
$DB_DEBUG = 1;
|
$DB_DEBUG = 1;
|
||||||
|
|
||||||
if ($DEBUG_ALL)
|
if ($DEBUG_ALL)
|
||||||
error_reporting(E_ALL | E_STRICT | E_ERROR | E_WARNING | E_PARSE | E_COMPILE_ERROR);
|
error_reporting(E_ALL | E_STRICT | E_ERROR | E_WARNING | E_PARSE | E_COMPILE_ERROR);
|
||||||
|
|
||||||
define('USE_DATABASE', true);
|
define('USE_DATABASE', true);
|
||||||
// sample config
|
// sample config
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
* - edit_pages.php
|
* - edit_pages.php
|
||||||
* - edit_schemes.php
|
* - edit_schemes.php
|
||||||
* - edit_users.php
|
* - edit_users.php
|
||||||
* - edit_visible_group.php
|
* - edit_visible_group.php
|
||||||
* HISTORY:
|
* HISTORY:
|
||||||
* 2005/06/30 (cs) remove color settings, they are in CSS File now
|
* 2005/06/30 (cs) remove color settings, they are in CSS File now
|
||||||
* 2005/06/22 (cs) moved load of config array into form class, set lang and lang is must set var for form class; removed the page name setting, moved it into the form class, remove all HTML from main page
|
* 2005/06/22 (cs) moved load of config array into form class, set lang and lang is must set var for form class; removed the page name setting, moved it into the form class, remove all HTML from main page
|
||||||
@@ -107,15 +107,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// log backend data
|
// log backend data
|
||||||
// data part creation
|
// data part creation
|
||||||
$data = array (
|
$data = array (
|
||||||
'_SESSION' => $_SESSION,
|
'_SESSION' => $_SESSION,
|
||||||
'_GET' => $_GET,
|
'_GET' => $_GET,
|
||||||
'_POST' => $_POST,
|
'_POST' => $_POST,
|
||||||
'_FILES' => $_FILES
|
'_FILES' => $_FILES
|
||||||
);
|
);
|
||||||
// log action
|
// log action
|
||||||
EditLog('Edit Submit', serialize($data));
|
EditLog('Edit Submit', serialize($data));
|
||||||
|
|
||||||
$form->form_procedure_load(${$form->archive_pk_name});
|
$form->form_procedure_load(${$form->archive_pk_name});
|
||||||
$form->form_procedure_new();
|
$form->form_procedure_new();
|
||||||
|
|||||||
@@ -67,7 +67,7 @@
|
|||||||
$smarty->setTemplateDir(TEMPLATES.DEFAULT_TEMPLATE);
|
$smarty->setTemplateDir(TEMPLATES.DEFAULT_TEMPLATE);
|
||||||
$DATA['css'] = CSS.DEFAULT_TEMPLATE;
|
$DATA['css'] = CSS.DEFAULT_TEMPLATE;
|
||||||
$DATA['js'] = JS.DEFAULT_TEMPLATE;
|
$DATA['js'] = JS.DEFAULT_TEMPLATE;
|
||||||
}
|
}
|
||||||
|
|
||||||
// order name is _always_ order_number for the edit interface
|
// order name is _always_ order_number for the edit interface
|
||||||
|
|
||||||
|
|||||||
@@ -155,7 +155,7 @@
|
|||||||
if (!$error)
|
if (!$error)
|
||||||
{
|
{
|
||||||
if ($_FILES['file_up']['name'])
|
if ($_FILES['file_up']['name'])
|
||||||
{
|
{
|
||||||
$mime_type = $_FILES['file_up']['type'];
|
$mime_type = $_FILES['file_up']['type'];
|
||||||
$file_size = $_FILES['file_up']['size'];
|
$file_size = $_FILES['file_up']['size'];
|
||||||
$file_name = $_FILES['file_up']['name'];
|
$file_name = $_FILES['file_up']['name'];
|
||||||
|
|||||||
@@ -95,7 +95,7 @@
|
|||||||
if (!is_dir($cms->pictures))
|
if (!is_dir($cms->pictures))
|
||||||
$cms->pictures = LAYOUT.DEFAULT_TEMPLATE.PICTURES.'/';
|
$cms->pictures = LAYOUT.DEFAULT_TEMPLATE.PICTURES.'/';
|
||||||
if (!is_dir($cms->cache_pictures))
|
if (!is_dir($cms->cache_pictures))
|
||||||
$cms->cache_pictures = LAYOUT.DEFAULT_TEMPLATE.CACHE.IMAGES.'/';
|
$cms->cache_pictures = LAYOUT.DEFAULT_TEMPLATE.CACHE.IMAGES.'/';
|
||||||
|
|
||||||
// if the template_dir is != DEFAULT_TEMPLATE, then try to make a lang switch
|
// if the template_dir is != DEFAULT_TEMPLATE, then try to make a lang switch
|
||||||
// if the default lang is not like the lang given, switch lang
|
// if the default lang is not like the lang given, switch lang
|
||||||
|
|||||||
@@ -366,7 +366,8 @@
|
|||||||
$string = $this->l->__('Year').' ';
|
$string = $this->l->__('Year').' ';
|
||||||
$string .= '<select id="year'.$suffix.'" name="year'.$suffix.'" onChange="'.$on_change_call.'">';
|
$string .= '<select id="year'.$suffix.'" name="year'.$suffix.'" onChange="'.$on_change_call.'">';
|
||||||
for ($i = date("Y"); $i <= $max_year; $i ++)
|
for ($i = date("Y"); $i <= $max_year; $i ++)
|
||||||
{ $string .= '<option value="'.$i.'" '.(($year == $i) ? 'selected' : '').'>'.$i.'</option>';
|
{
|
||||||
|
$string .= '<option value="'.$i.'" '.(($year == $i) ? 'selected' : '').'>'.$i.'</option>';
|
||||||
}
|
}
|
||||||
$string .= '</select> '.$this->l->__('Month').' ';
|
$string .= '</select> '.$this->l->__('Month').' ';
|
||||||
$string .= '<select id="month'.$suffix.'" name="month'.$suffix.'" onChange="'.$on_change_call.'">';
|
$string .= '<select id="month'.$suffix.'" name="month'.$suffix.'" onChange="'.$on_change_call.'">';
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
* PUBLIC METHODS
|
* PUBLIC METHODS
|
||||||
* debug -> calls with "level", "string" and flag to turn off (0) the newline at the end
|
* debug -> calls with "level", "string" and flag to turn off (0) the newline at the end
|
||||||
* debug_for -> sets debug on/off for a type (error, echo, print) for a certain level
|
* debug_for -> sets debug on/off for a type (error, echo, print) for a certain level
|
||||||
* print_error_msg -> prints out the error message, optional parameter is a header prefix
|
* print_error_msg -> prints out the error message, optional parameter is a header prefix
|
||||||
* fdebug -> prints line directly to debug_file.log in tmp
|
* fdebug -> prints line directly to debug_file.log in tmp
|
||||||
*
|
*
|
||||||
* print_time -> prints time + microtime, optional flag to turn off (0) microtime printout
|
* print_time -> prints time + microtime, optional flag to turn off (0) microtime printout
|
||||||
@@ -530,8 +530,8 @@
|
|||||||
$traces = debug_backtrace();
|
$traces = debug_backtrace();
|
||||||
// extended info (later)
|
// extended info (later)
|
||||||
/*
|
/*
|
||||||
* $file = $trace[$level]['file'];
|
* $file = $trace[$level]['file'];
|
||||||
* $line = $trace[$level]['line'];
|
* $line = $trace[$level]['line'];
|
||||||
* $object = $trace[$level]['object'];
|
* $object = $trace[$level]['object'];
|
||||||
* if (is_object($object)) { $object = get_class($object); }
|
* if (is_object($object)) { $object = get_class($object); }
|
||||||
*
|
*
|
||||||
@@ -683,7 +683,7 @@
|
|||||||
4096 => 'E_RECOVERABLE_ERROR', // since 5.2
|
4096 => 'E_RECOVERABLE_ERROR', // since 5.2
|
||||||
8192 => 'E_DEPRICATED', // since 5.3
|
8192 => 'E_DEPRICATED', // since 5.3
|
||||||
16384 => 'E_USER_DEPRICATED', // since 5.3
|
16384 => 'E_USER_DEPRICATED', // since 5.3
|
||||||
30719 => 'E_ALL' // 6143 in 5.2, 2047 in previous versions
|
30719 => 'E_ALL' // 6143 in 5.2, 2047 in previous versions
|
||||||
);
|
);
|
||||||
|
|
||||||
$fn = ROOT.LOG.'php_errors-'.date('Y-m-d').'.log';
|
$fn = ROOT.LOG.'php_errors-'.date('Y-m-d').'.log';
|
||||||
@@ -813,7 +813,7 @@
|
|||||||
if (preg_match("/\/\/$/", $_1) && preg_match("/^\//", $_2))
|
if (preg_match("/\/\/$/", $_1) && preg_match("/^\//", $_2))
|
||||||
{
|
{
|
||||||
$_1 = '';
|
$_1 = '';
|
||||||
$target = '';
|
$target = '';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -943,7 +943,7 @@
|
|||||||
// haystack (search in)
|
// haystack (search in)
|
||||||
// key: the key to look for in
|
// key: the key to look for in
|
||||||
// path: recursive call for previous path
|
// path: recursive call for previous path
|
||||||
// RETURN all array elements paths where the element was found
|
// RETURN all array elements paths where the element was found
|
||||||
// DESCRIPTION
|
// DESCRIPTION
|
||||||
// recursive array search function, which returns all found not only the first one
|
// recursive array search function, which returns all found not only the first one
|
||||||
public static function array_search_recursive_all($needle, $haystack, $key, $path = NULL)
|
public static function array_search_recursive_all($needle, $haystack, $key, $path = NULL)
|
||||||
|
|||||||
@@ -491,7 +491,7 @@ $this->debug('write_check', "[$column][".$this->table_array[$column]["value"]."]
|
|||||||
{
|
{
|
||||||
$q = "INSERT INTO ".$this->table_name." ";
|
$q = "INSERT INTO ".$this->table_name." ";
|
||||||
$q .= "(".$q_vars.") ";
|
$q .= "(".$q_vars.") ";
|
||||||
$q .= "VALUES (".$q_data.")";
|
$q .= "VALUES (".$q_data.")";
|
||||||
// write primary key too
|
// write primary key too
|
||||||
/* if ($q_data)
|
/* if ($q_data)
|
||||||
$q .= ", ";
|
$q .= ", ";
|
||||||
|
|||||||
@@ -954,13 +954,13 @@
|
|||||||
// if mandatory && no input
|
// if mandatory && no input
|
||||||
else if ($value["mandatory"] &&
|
else if ($value["mandatory"] &&
|
||||||
(
|
(
|
||||||
// for all "normal" fields
|
// for all "normal" fields
|
||||||
($this->table_array[$key]["type"] != "password" && $this->table_array[$key]["type"] != "drop_down_db_input" && !$this->table_array[$key]["value"]) ||
|
($this->table_array[$key]["type"] != "password" && $this->table_array[$key]["type"] != "drop_down_db_input" && !$this->table_array[$key]["value"]) ||
|
||||||
// for drop_down_db_input check if one of both fields filled
|
// for drop_down_db_input check if one of both fields filled
|
||||||
($this->table_array[$key]["type"] == "drop_down_db_input" && !$this->table_array[$key]["input_value"] && !$this->table_array[$key]["value"]) ||
|
($this->table_array[$key]["type"] == "drop_down_db_input" && !$this->table_array[$key]["input_value"] && !$this->table_array[$key]["value"]) ||
|
||||||
// for password
|
// for password
|
||||||
($this->table_array[$key]["type"] == "password" && !$this->table_array[$key]["value"] && !$this->table_array[$key]["HIDDEN_value"])
|
($this->table_array[$key]["type"] == "password" && !$this->table_array[$key]["value"] && !$this->table_array[$key]["HIDDEN_value"])
|
||||||
)
|
)
|
||||||
) // main if end
|
) // main if end
|
||||||
{
|
{
|
||||||
//$this->debug('form', "A: ".$this->table_array[$key]["type"]." -- ".$this->table_array[$key]["input_value"]." -- ".$this->table_array[$key]["value"]);
|
//$this->debug('form', "A: ".$this->table_array[$key]["type"]." -- ".$this->table_array[$key]["input_value"]." -- ".$this->table_array[$key]["value"]);
|
||||||
@@ -996,7 +996,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
//$this->debug('edit_error', "QS: <pre>".print_r($_POST, 1)."</pre>");
|
//$this->debug('edit_error', "QS: <pre>".print_r($_POST, 1)."</pre>");
|
||||||
if (is_array($this->element_list))
|
if (is_array($this->element_list))
|
||||||
{
|
{
|
||||||
// check the mandatory stuff
|
// check the mandatory stuff
|
||||||
// if mandatory, check that at least on pk exists or if at least the mandatory field is filled
|
// if mandatory, check that at least on pk exists or if at least the mandatory field is filled
|
||||||
|
|||||||
@@ -102,7 +102,6 @@ class ProgressBar
|
|||||||
$bar = $this->height;
|
$bar = $this->height;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// avoid divison through 0
|
// avoid divison through 0
|
||||||
if ($this->max - $this->min == 0)
|
if ($this->max - $this->min == 0)
|
||||||
$this->max ++;
|
$this->max ++;
|
||||||
@@ -557,7 +556,6 @@ class ProgressBar
|
|||||||
$this->_setStep($step);
|
$this->_setStep($step);
|
||||||
|
|
||||||
$js = '';
|
$js = '';
|
||||||
|
|
||||||
$new_position = $this->_calculatePosition($this->step);
|
$new_position = $this->_calculatePosition($this->step);
|
||||||
if ($new_position['width'] != $this->position['width'] && ($this->direction == 'right' || $this->direction == 'left'))
|
if ($new_position['width'] != $this->position['width'] && ($this->direction == 'right' || $this->direction == 'left'))
|
||||||
{
|
{
|
||||||
@@ -576,7 +574,6 @@ class ProgressBar
|
|||||||
$js .= 'PBposition'.$this->code.'("height",'.$new_position['height'].');';
|
$js .= 'PBposition'.$this->code.'("height",'.$new_position['height'].');';
|
||||||
}
|
}
|
||||||
$this->position = $new_position;
|
$this->position = $new_position;
|
||||||
|
|
||||||
foreach($this->label as $name => $data)
|
foreach($this->label as $name => $data)
|
||||||
{
|
{
|
||||||
if (array_key_exists('type', $data))
|
if (array_key_exists('type', $data))
|
||||||
|
|||||||
@@ -10,8 +10,8 @@
|
|||||||
|
|
||||||
// read in the Smarty class for definition
|
// read in the Smarty class for definition
|
||||||
// use smarty BC for backwards compability
|
// use smarty BC for backwards compability
|
||||||
// try to include file from LIBS path, or from normal path
|
// try to include file from LIBS path, or from normal path
|
||||||
_spl_autoload('SmartyBC.class.php');
|
_spl_autoload('SmartyBC.class.php');
|
||||||
|
|
||||||
class SmartyML extends SmartyBC
|
class SmartyML extends SmartyBC
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?
|
<?
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
* AUTHOR: Clemens Schwaighofer
|
* AUTHOR: Clemens Schwaighofer
|
||||||
* CREATED: 2011/2/8
|
* CREATED: 2011/2/8
|
||||||
* DESCRIPTION: pre function to collect all non critical errors into a log file if possible
|
* DESCRIPTION: pre function to collect all non critical errors into a log file if possible
|
||||||
* include this file at the very beginning of the script to get the notices, strict, etc messages.
|
* include this file at the very beginning of the script to get the notices, strict, etc messages.
|
||||||
* error etc will still be written to the log/display
|
* error etc will still be written to the log/display
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
4096 => 'E_RECOVERABLE_ERROR',
|
4096 => 'E_RECOVERABLE_ERROR',
|
||||||
8192 => 'E_DEPRICATED',
|
8192 => 'E_DEPRICATED',
|
||||||
16384 => 'E_USER_DEPRICATED',
|
16384 => 'E_USER_DEPRICATED',
|
||||||
30719 => 'E_ALL'
|
30719 => 'E_ALL'
|
||||||
);
|
);
|
||||||
|
|
||||||
// get the current page name (strip path)
|
// get the current page name (strip path)
|
||||||
|
|||||||
@@ -141,8 +141,8 @@ class qqFileUploader {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->uploadFileName = $uploadDirectory . $filename . '.' . $ext;
|
$this->uploadFileName = $uploadDirectory . $filename . '.' . $ext;
|
||||||
$this->uploadFileExt = $ext;
|
$this->uploadFileExt = $ext;
|
||||||
|
|
||||||
if ($this->file->save($uploadDirectory . $filename . '.' . $ext)){
|
if ($this->file->save($uploadDirectory . $filename . '.' . $ext)){
|
||||||
return array('success'=>true);
|
return array('success'=>true);
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
* 2004/09/30 (cs) layout cleanup
|
* 2004/09/30 (cs) layout cleanup
|
||||||
* /
|
* /
|
||||||
|
|
||||||
/* collection of PostgreSQL wrappers
|
* collection of PostgreSQL wrappers
|
||||||
* REQUIRES 5.x PHP!!!
|
* REQUIRES 5.x PHP!!!
|
||||||
*
|
*
|
||||||
* pg_prepare
|
* pg_prepare
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* HISTORY:
|
* HISTORY:
|
||||||
* /
|
* /
|
||||||
|
|
||||||
/* collection of PostgreSQL wrappers
|
/* collection of PostgreSQL wrappers
|
||||||
* REQUIRES 5.x PHP with compiled pdo pgsql (--with-pdo-pgsql)
|
* REQUIRES 5.x PHP with compiled pdo pgsql (--with-pdo-pgsql)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user