diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-01-27 13:27:22 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-01-27 13:28:16 +0100 |
commit | a188a9a305b25c89b18c71e29e348d9adcd29719 (patch) | |
tree | d1ab99f8261b7646c7b0f0e75e979837263ad0c6 /program/include/rcmail_output_html.php | |
parent | b0cc5519d74ac50a2c01b8106f9afa43357ccb48 (diff) |
Fix PHP Warning: Missing argument 2 for rcmail_output_html::get_skin_file()
Diffstat (limited to 'program/include/rcmail_output_html.php')
-rw-r--r-- | program/include/rcmail_output_html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcmail_output_html.php b/program/include/rcmail_output_html.php index f753bf8e1..05904e58b 100644 --- a/program/include/rcmail_output_html.php +++ b/program/include/rcmail_output_html.php @@ -215,7 +215,7 @@ class rcmail_output_html extends rcmail_output * @param string Additional path to search in * @return mixed Relative path to the requested file or False if not found */ - public function get_skin_file($file, &$skin_path, $add_path = null) + public function get_skin_file($file, &$skin_path = null, $add_path = null) { $skin_paths = $this->skin_paths; if ($add_path) |