|
From: Florin C B. <ory...@us...> - 2012-01-03 03:45:48
|
Update of /cvsroot/mxbb/mx_pafiledb
In directory vz-cvs-4.sog:/tmp/cvs-serv20429
Modified Files:
dload_lists.php mx_install_readme.htm
Log Message:
added new brosers support and some fixes
Index: mx_install_readme.htm
===================================================================
RCS file: /cvsroot/mxbb/mx_pafiledb/mx_install_readme.htm,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** mx_install_readme.htm 5 Jul 2008 21:57:31 -0000 1.12
--- mx_install_readme.htm 3 Jan 2012 03:45:46 -0000 1.13
***************
*** 2,6 ****
<head>
<title>Mx Portal installation - readme</title>
! <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<!-- link rel="stylesheet" href="templates/subSilver/subSilver.css" type="text/css" -->
<style type="text/css">
--- 2,6 ----
<head>
<title>Mx Portal installation - readme</title>
! <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- link rel="stylesheet" href="templates/subSilver/subSilver.css" type="text/css" -->
<style type="text/css">
Index: dload_lists.php
===================================================================
RCS file: /cvsroot/mxbb/mx_pafiledb/dload_lists.php,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** dload_lists.php 3 Jun 2008 20:21:57 -0000 1.29
--- dload_lists.php 3 Jan 2012 03:45:46 -0000 1.30
***************
*** 57,61 ****
if (!($pafiledb_config['enable_module'] || $mx_user->is_admin))
{
! mx_message_die( GENERAL_MESSAGE, $lang['pafiledb_disable'] );
}
--- 57,61 ----
if (!($pafiledb_config['enable_module'] || $mx_user->is_admin))
{
! mx_message_die(GENERAL_MESSAGE, $lang['pafiledb_disable']);
}
***************
*** 63,70 ****
// an array of all expected actions
// ===================================================
! $actions = array( 'lists' => 'lists' );
$action = 'lists';
! $pafiledb->module( $actions[$action] );
! $pafiledb->modules[$actions[$action]]->main( $action );
?>
\ No newline at end of file
--- 63,70 ----
// an array of all expected actions
// ===================================================
! $actions = array('lists' => 'lists');
$action = 'lists';
! $pafiledb->module($actions[$action]);
! $pafiledb->modules[$actions[$action]]->main($action);
?>
\ No newline at end of file
|