Download | Plain Text | No Line Numbers


  1. diff -Naur html.orig/include/data_source/class.ValueFormated.php html/include/data_source/class.ValueFormated.php
  2. --- html.orig/include/data_source/class.ValueFormated.php 2010-06-04 13:28:31.000000000 +0200
  3. +++ html/include/data_source/class.ValueFormated.php 2010-06-04 14:22:20.000000000 +0200
  4. @@ -62,7 +62,7 @@
  5. echo "ValueFormated::callFormatFunction: ".$this->mcFormatFunction." (".join(',',$laArgs).")<br>\n";
  6. }
  7. */
  8. - return call_user_func_array( $this->mcFormatFunction, $laArgs );
  9. + return call_user_func_array2( $this->mcFormatFunction, $laArgs );
  10. } else {
  11. return NULL;
  12. }
  13. diff -Naur html.orig/include/elements/data/class.TableView.php html/include/elements/data/class.TableView.php
  14. --- html.orig/include/elements/data/class.TableView.php 2010-06-04 13:28:31.000000000 +0200
  15. +++ html/include/elements/data/class.TableView.php 2010-06-04 14:19:44.000000000 +0200
  16. @@ -40,7 +40,7 @@
  17. global $DEBUG;
  18. if( !is_null($poDataSource)){
  19. $laArgs = func_get_args();
  20. - call_user_func_array( array( &$this, 'setDataSource' ), $laArgs );
  21. + call_user_func_array2( array( &$this, 'setDataSource' ), $laArgs );
  22. }
  23. return $this->moDataSource;
  24. }
  25. @@ -49,7 +49,7 @@
  26. function &Header( $poHeader = NULL ){
  27. if( !is_null( $poHeader ) ) {
  28. $laArgs = func_get_args();
  29. - call_user_func_array( array( &$this, 'setHeader'), $laArgs );
  30. + call_user_func_array2( array( &$this, 'setHeader'), $laArgs );
  31. }
  32. return $this->moHeader;
  33. }
  34. @@ -58,7 +58,7 @@
  35. function &Footer( $poFooter = NULL ){
  36. if( !is_null( $poFooter ) ) {
  37. $laArgs = func_get_args();
  38. - call_user_func_array( array( &$this, 'setFooter' ), $laArgs );
  39. + call_user_func_array2( array( &$this, 'setFooter' ), $laArgs );
  40. }
  41. return $this->moFooter;
  42. }
  43. @@ -69,7 +69,7 @@
  44. if( !is_null( $poTitle ) ) {
  45. $laArgs = func_get_args();
  46.  
  47. - call_user_func_array( array(&$this,'setTitle'), $laArgs );
  48. + call_user_func_array2( array(&$this,'setTitle'), $laArgs );
  49. }
  50. return $this->moTitle;
  51. }
  52. @@ -79,7 +79,7 @@
  53. if( !is_null( $poButtons ) ) {
  54. $laArgs = func_get_args();
  55.  
  56. - call_user_func_array( array(&$this,'setButtons'), $laArgs );
  57. + call_user_func_array2( array(&$this,'setButtons'), $laArgs );
  58. }
  59. return $this->moButtons;
  60. }
  61. @@ -438,4 +438,4 @@
  62. }
  63.  
  64. }
  65. -?>
  66. \ No newline at end of file
  67. +?>
  68.