]> git.mxchange.org Git - mailer.git/blobdiff - inc/filter/theme_filter.php
Code style changed, ext-user continued:
[mailer.git] / inc / filter / theme_filter.php
index 37b6bc5bc847b93cb50df6e154cf90f21dae273b..742f6b08c8def5eba2e709fac91d0c9a742010f3 100644 (file)
@@ -90,12 +90,12 @@ function FILTER_THEME_USER_REGISTRATION_ADD_SQL_COLUMNS ($filterData) {
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
 
        // Okay, add design here
-       $GLOBALS['register_sql_columns'] .= ', `curr_theme`';
-       $GLOBALS['register_sql_data']    .= ", '{%%pipe,getCurrentTheme%%}'";
+       addExtraRegistrationColumns(', `curr_theme`');
+       addExtraRegistrationData(", '{%%pipe,getCurrentTheme%%}'");
 
        // Return filter data
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
-       //* NOISY-DEBUG: */ print __FUNCTION__.':filterData=<pre>'.print_r($filterData,true).'</pre>';
+       //* NOISY-DEBUG: */ print __FUNCTION__.':filterData=<pre>'.print_r($filterData,TRUE).'</pre>';
        return $filterData;
 }