Format sourcecode / error at runtime

Hi,

i have a problem after installation from v8.1 …

My sourcecode is formatted with spaces:


// formatted with space
$user_id      = 0;
$user_vorname = "";
$user_gruppe  = 0;

SC compiles that to:


1099| $user_id$this->SC_function_0  $this->SC_function_0  = 0; 
1100| $user_vorname = ""; 
1101| $user_gruppe  = 0; 

Look at line 1099: if more than 3 spaces between “$user_id” and “= 0;” sc inserts “$this->SC_function_0 $this->SC_function_0”

Why?

Solved with this post …