Aleksander Machniak
2012-12-13 87ec1de655af6cdd0a0bbf14e05dce6a3f792f85
program/include/bc.php
@@ -31,7 +31,7 @@
define('RCUBE_INPUT_POST', rcube_utils::INPUT_POST);
define('RCUBE_INPUT_GPC',  rcube_utils::INPUT_GPC);
define('JS_OBJECT_NAME',   rcmail::JS_OBJECT_NAME);
define('JS_OBJECT_NAME',   rcmail_output::JS_OBJECT_NAME);
define('RCMAIL_CHARSET',   RCUBE_CHARSET);
function get_table_name($table)
@@ -126,7 +126,7 @@
function rcmail_get_edit_field($col, $value, $attrib, $type='text')
{
  return rcube_utils::get_edit_field($col, $value, $attrib, $type);
  return rcube_output::get_edit_field($col, $value, $attrib, $type);
}
function rcmail_mod_css_styles($source, $container_id, $allow_remote=false)
@@ -398,3 +398,12 @@
{
    return rcube_utils::get_boolean($str);
}
function enriched_to_html($data)
{
    return rcube_enriched::to_html($data);
}
class rcube_html_page extends rcmail_html_page
{
}