Update of /cvsroot/phpslash/phpslash-ft/class
In directory sc8-pr-cvs1:/tmp/cvs-serv23704/phpslash-ft/class
Modified Files:
Block_admin.class Author.class
Log Message:
a few text strings
Index: Block_admin.class
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/class/Block_admin.class,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Block_admin.class 12 Feb 2003 16:44:09 -0000 1.8
--- Block_admin.class 12 Feb 2003 22:33:43 -0000 1.9
***************
*** 268,273 ****
$each = $this->psl['classdir'] . "/" . $eachfile;
if( (is_file($each)) AND
! ( preg_match('/Block_render_/i', $each)) ) {
!
$eachtype = str_replace("Block_render_", "", $eachfile);
$eachtype = str_replace(".class", "", $eachtype);
--- 268,274 ----
$each = $this->psl['classdir'] . "/" . $eachfile;
if( (is_file($each)) AND
! ( preg_match('/Block_render_/i', $each)) AND
! ( !preg_match('/Block_render_i/i', $each)) ) {
!
$eachtype = str_replace("Block_render_", "", $eachfile);
$eachtype = str_replace(".class", "", $eachtype);
Index: Author.class
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/class/Author.class,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** Author.class 6 Feb 2003 20:28:20 -0000 1.39
--- Author.class 12 Feb 2003 22:33:44 -0000 1.40
***************
*** 595,604 ****
$author_id = $this->db->Record['author_id'];
! // $author_perms = $this->db->Record['perms'];
$tauthor_perms = explode(',',$this->db->Record['perms'] );
$this->author_templ->set_block("template","perm_row","perm_rows");
$this->author_templ->set_block("template","permhave_row","permhave_rows");
$this->author_templ->set_var(array(
! 'TITLEBAR' => getTitlebar("100%",sprintf("Update Author (%s)", $id)),
'ACTION_URL' => $this->psl['phpself'],
'AUTHOR_ID' => $author_id,
--- 595,604 ----
$author_id = $this->db->Record['author_id'];
! // $author_perms = $this->db->Record['perms'];
$tauthor_perms = explode(',',$this->db->Record['perms'] );
$this->author_templ->set_block("template","perm_row","perm_rows");
$this->author_templ->set_block("template","permhave_row","permhave_rows");
$this->author_templ->set_var(array(
! 'TITLEBAR' => getTitlebar("100%",sprintf(pslgetText("Update Author (%s)"), $id)),
'ACTION_URL' => $this->psl['phpself'],
'AUTHOR_ID' => $author_id,
|