Update of /cvsroot/phpslash/phpslash-dev/public_html
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15686/phpslash-dev/public_html
Modified Files:
config-dist.ini.php config-dist.php config_setup.ini.php
Log Message:
User Blog support
Index: config-dist.ini.php
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.ini.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** config-dist.ini.php 1 Sep 2004 18:59:59 -0000 1.11
--- config-dist.ini.php 6 Sep 2004 01:34:30 -0000 1.12
***************
*** 507,511 ****
;; headlines (the actual mailing is handled elsewhere; see the file
;; cronmail.php
! MailingList = mailinglist
;; Provide a container for small bits of HTML to be incorporated into
;; side columns of pages.
--- 507,513 ----
;; headlines (the actual mailing is handled elsewhere; see the file
;; cronmail.php
! ;; MailingList = mailinglist
! ;; PHPlist
! Newsletters = phplist
;; Provide a container for small bits of HTML to be incorporated into
;; side columns of pages.
Index: config-dist.php
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** config-dist.php 1 Sep 2004 18:59:59 -0000 1.21
--- config-dist.php 6 Sep 2004 01:34:30 -0000 1.22
***************
*** 622,625 ****
--- 622,633 ----
'module' => "Submission"
);
+ /*
+ $menuitem[] = array(
+ 'name' => "Blog",
+ 'link' => $_PSL['rooturl'] . "/index.php?section=Blogs",
+ 'perm' => "nobody",
+ 'module' => "Story"
+ );
+ */
$menuitem[] = array(
'name' => "Glossary",
***************
*** 645,649 ****
'perm' => "nobody",
'module' => "MailingList"
! );
$menuitem[] = array(
'name' => "About",
--- 653,663 ----
'perm' => "nobody",
'module' => "MailingList"
! );
! $menuitem[] = array(
! 'name' => "Newsletters",
! 'link' => $_PSL['rooturl'] . "/modules/phplist",
! 'perm' => "nobody",
! 'module' => "Newsletters"
! );
$menuitem[] = array(
'name' => "About",
***************
*** 720,723 ****
--- 734,743 ----
);
$menuitem[] = array(
+ 'name' => "Newsletters",
+ 'link' => $_PSL['rooturl'] . "/modules/phplist",
+ 'perm' => "nobody",
+ 'module' => "Newsletters"
+ );
+ $menuitem[] = array(
'name' => "About",
'link' => $_PSL['rooturl'] . "/about.html",
***************
*** 763,766 ****
--- 783,792 ----
);
$menuitem[] = array(
+ 'name' => "Blog Entry",
+ 'link' => $_PSL['adminurl'] . "/storyAdmin.php",
+ 'perm' => "blogger",
+ 'module' => "Story"
+ );
+ $menuitem[] = array(
'name' => "Submission",
'link' => $_PSL['adminurl'] . "/submissionAdmin.php",
***************
*** 793,796 ****
--- 819,828 ----
);
$menuitem[] = array(
+ 'name' => "Newsletters",
+ 'link' => $_PSL['rooturl'] . "/modules/phplist/admin/",
+ 'perm' => "mailinglist",
+ 'module' => "Newsletters"
+ );
+ $menuitem[] = array(
'name' => "Author",
'link' => $_PSL['adminurl'] . "/authorAdmin.php",
Index: config_setup.ini.php
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config_setup.ini.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** config_setup.ini.php 1 Sep 2004 18:59:59 -0000 1.7
--- config_setup.ini.php 6 Sep 2004 01:34:30 -0000 1.8
***************
*** 507,511 ****
;; headlines (the actual mailing is handled elsewhere; see the file
;; cronmail.php
! MailingList = mailinglist
;; Provide a container for small bits of HTML to be incorporated into
;; side columns of pages.
--- 507,513 ----
;; headlines (the actual mailing is handled elsewhere; see the file
;; cronmail.php
! ;; MailingList = mailinglist
! ;; PHPlist
! Newsletters = phplist
;; Provide a container for small bits of HTML to be incorporated into
;; side columns of pages.
|