Pagina 2 din 2

Scris: 10-Feb-2007, 10:00:37
de snuppy
exact aia am cautat-o cand am vazut ca nu am ce face, dar nu o gaseste, se poate sa fie denumita altfel?

Scris: 10-Feb-2007, 11:46:39
de Aliniuz
Nu se poate, trebuie sa fie .

Reia cautarea, vezi poate cauti in alt fisier .

Scris: 10-Feb-2007, 12:05:25
de snuppy
apropo, cu ce ar trebui sa editez documentele? ce program imi ofera cautare si pe mai multe randuri?

Scris: 10-Feb-2007, 12:10:30
de Aliniuz
Eu iti recomand Dreamweaver 8 . Free nu il gasesti pe net decat warez .

Scris: 10-Feb-2007, 12:42:07
de snuppy
mersi pentru recomandare, din cate stiu are 30 zile trial. apropo: la un alt mod, inca ceva:

Cod: Selectaţi tot

#
#-----[ FIND ]------------------------------------------
#
	$template->assign_block_vars('postrow', array(
#
#-----[ BEFORE, ADD ]------------------------------------------
#
	if ( $userdata['session_logged_in'] )
	{
		$report_img = '<a href="' . append_sid($phpbb_root_path . 'viewtopic.'.$phpEx.'?report=true&' . POST_POST_URL . '=' . $postrow[$i]['post_id']) . '"><img></a>';
	}
	else
	{
		$report_img = '';
	}
#
#-----[ AFTER, ADD ]------------------------------------------
#
		'REPORT_IMG'	=> $report_img,
#
asa imi apare acolo la instalare. Dar asta cum vine? E un before add si un after add, dar after add unde il pun? dupa before add sau dupa $template->assign_block_vars('postrow', array( ?
ca am facut in ambele feluri si imi da o eroare:

Cod: Selectaţi tot

Parse error: syntax error, unexpected T_ELSE in /home/site/public_html/forum/viewtopic.php on line 355
si

Cod: Selectaţi tot

message_die() was called multiple times. This isn't supposed to happen. Was message_die() used in page_tail.php?
eroarea asta

Scris: 10-Feb-2007, 12:48:46
de Aliniuz
Codul ar trebui sa arate cam asa

Cod: Selectaţi tot

if ( $userdata['session_logged_in'] )
   {
      $report_img = '<a href="' . append_sid($phpbb_root_path . 'viewtopic.'.$phpEx.'?report=true&' . POST_POST_URL . '=' . $postrow[$i]['post_id']) . '"><img></a>';
   }
   else
   {
      $report_img = '';
   }
$template->assign_block_vars('postrow', array(
'REPORT_IMG'   => $report_img,

Scris: 10-Feb-2007, 12:54:40
de snuppy
exact asa l-am pus, dar tot nu merge, imi da eroarea aia

Scris: 10-Feb-2007, 12:58:08
de Aliniuz
inseamna ca ai omis anumite instructiuni sau ca le-ai urmat gresit in viewtopic.php .

Reia MODul .