hi
gibt es eine möglichkeit beiträge in denen man schon geschrieben hat zumarkieren, ähnlich wie bei vB.
gibt es sowas ???
SWAT
beiträge in denen man schon geschrieben hat kenzeichnen
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Der Categories Hierarchy von Ptirhiik hat sowas automatisch dabei.
Ist aber ein sehr komplexer Mod, da er vieles an phpBB ändert, eigentlich fast die ganze Engine
Schau Dir das mal an, vielleicht trifft es Deinen Geschmack.
Gruss Bud
http://ptifo.clanmckeen.com/
Ist aber ein sehr komplexer Mod, da er vieles an phpBB ändert, eigentlich fast die ganze Engine
Schau Dir das mal an, vielleicht trifft es Deinen Geschmack.
Gruss Bud
http://ptifo.clanmckeen.com/
Wenn ich ehrlich sein darf, würde ich so bis ca 15 - 20 Mods das vorher installierte Paket nehmen, und die Mods nachträglich wieder hinzufügen. Manche erledigen sich durch den CH von selbst, manche passen auch nicht mehr 
Ansonsten ist der Mod weitgehend EM kompatibel, ABER...
...du musst die SQL updates von Hand machen, und ausserdem noch die entsprechende install ebenfalls von Hand. Ich kann das _nicht_ empfehlen, da EM bei so vielen Änderungen meist ein bisschen überfordert ist...
Wenn Du noch Fragen hast, melde Dich.
Gruss Bud

Ansonsten ist der Mod weitgehend EM kompatibel, ABER...
...du musst die SQL updates von Hand machen, und ausserdem noch die entsprechende install ebenfalls von Hand. Ich kann das _nicht_ empfehlen, da EM bei so vielen Änderungen meist ein bisschen überfordert ist...
Wenn Du noch Fragen hast, melde Dich.

Gruss Bud
Re: beiträge in denen man schon geschrieben hat kenzeichnen
Du meinst doch wohl 'in Themen in denen man schon geschrieben hat', richtig.Swat hat geschrieben:gibt es eine möglichkeit beiträge in denen man schon geschrieben hat zumarkieren, ähnlich wie bei vB.
gibt es sowas ???
Nimm dies:
Code: Alles auswählen
########################################################
## Mod Title: posted in a topic icon
## Mod Version: 1.0.0
## Author: Adam Ismay (mitsubishi) <admin@boardz.tk> www.boardz.tk
## Description: Adds some CSS to the topic icon if you've posted in it
##
## Installation Level: easy
## Installation Time: 1-2 Minutes
## Files To Edit: subSilver.cfg
## viewforum.php
## viewforum_body.tpl
##############################################################
## This MOD is released under the GPL License.
## Intellectual Property is retained by the MOD Author(s) listed above
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/
##############################################################
## Authors Notes:
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
# ------ [ OPEN ] ----
#
viewforum.php
#
# ------- [ FIND ] ------
#
while( $row = $db->sql_fetchrow($result) )
{
$topic_rowset[] = $row;
$total_announcements++;
}
#
# ----- [ REPLACE WITH] ----
#
$topics_on_page = '';
while( $row = $db->sql_fetchrow($result) )
{
$topic_rowset[] = $row;
$total_announcements++;
$topics_on_page .= ( ( $topics_on_page != '' ) ? ', ' : '' ) . $row['topic_id'];
}
#
# ------ [ FIND ] ----
#
$total_topics++;
#
# ------ [ AFTER, ADD] ----
#
$topics_on_page .= ( ( $topics_on_page != '' ) ? ', ' : '' ) . $row['topic_id'];
#
# ------ [ FIND] ----
#
//
// Total topics ...
//
$total_topics += $total_announcements;
#
# ------ [ AFTER, ADD ] ----
#
// MOD
$posted_topics = array();
if ( $userdata['session_logged_in'] && !empty($topics_on_page))
{
$sql = "SELECT p.topic_id FROM " . POSTS_TABLE . " p
WHERE p.topic_id IN ($topics_on_page)
AND p.poster_id = " . $userdata['user_id'];
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not obtain topic information', '', __LINE__, __FILE__, $sql);
}
while( $row = $db->sql_fetchrow($result) )
{
$posted_topics[] = $row['topic_id'];
}
}
// END MOD
#
# ------ [ FIND ] ----
#
'LAST_POST_AUTHOR' => $last_post_author,
'LAST_POST_IMG' => $last_post_url,
#
# ------ [ AFTER, ADD ] ----
#
'POSTED' => in_array($topic_id, $posted_topics) ? $board_config['me_posted_css'] : '',
#
# ------ [ OPEN ] ----
#
viewforum_body.tpl
#
# ------ [ FIND ] ----
#
<td class="row1" align="center" valign="middle" width="20"><img src="{topicrow.TOPIC_FOLDER_IMG}" width="19" height="18" alt="{topicrow.L_TOPIC_FOLDER_ALT}" title="{topicrow.L_TOPIC_FOLDER_ALT}" /></td>
#
# ------ [ REPLACE with] ----
#
<td class="row1" align="center" valign="middle" width="20"><img src="{topicrow.TOPIC_FOLDER_IMG}" width="19" height="18" alt="{topicrow.L_TOPIC_FOLDER_ALT}" title="{topicrow.L_TOPIC_FOLDER_ALT}" {topicrow.POSTED} /></td>
#
# ------ [ OPEN ] ----
#
templates/SubSilver/Subsilver.cfg
#
# ------ [ Find] ----
#
$board_config['vote_graphic_length'] = 205;
$board_config['privmsg_graphic_length'] = 175;
#
# ------ [ AFTER, ADD ] ----
#
$board_config['me_posted_css'] = 'style="background : orange"';
#------[ OR ]---------
$board_config['me_posted_css'] = 'style="border : 2px dotted Red"';
#
#-----[ SAVE ALL FILES ]------------------------------------------
#
# EoM