Update of /cvsroot/phpslash/phpslash-dev/public_html
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7380/phpslash-dev/public_html
Modified Files:
backend.php config-dist.php
Log Message:
new Feeds block.
Index: backend.php
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/public_html/backend.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** backend.php 4 Nov 2004 20:17:03 -0000 1.4
--- backend.php 6 Nov 2004 18:08:02 -0000 1.5
***************
*** 4,15 ****
/* $Id$ */
- require('config.php');
! $ary['module'] = 'Story';
! $ary['page'] = 'backend';
! if(!isset($ary['view'])) {
! $ary['view'] = 'rss2';
}
$pagetitle = pslgetText($ary['module']); // The name to be displayed in the header
--- 4,15 ----
/* $Id$ */
! // $_GET['module'] = 'Story';
! // $_GET['page'] = 'backend';
! if(empty($_GET['view'])) {
! $_GET['view'] = 'rss2';
}
+ require('config.php');
$pagetitle = pslgetText($ary['module']); // The name to be displayed in the header
Index: config-dist.php
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.php,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** config-dist.php 5 Nov 2004 16:35:24 -0000 1.32
--- config-dist.php 6 Nov 2004 18:08:02 -0000 1.33
***************
*** 494,498 ****
*/
$ary = array();
! if(!empty($HTTP_GET_VARS)) {
$ary = clean($HTTP_GET_VARS);
} elseif (!empty($_SERVER['PATH_INFO'])) {
--- 494,500 ----
*/
$ary = array();
! if(!(count($_GET) > 0)) {
! $ary = clean($_GET);
! } elseif (!empty($HTTP_GET_VARS)) {
$ary = clean($HTTP_GET_VARS);
} elseif (!empty($_SERVER['PATH_INFO'])) {
|