 |
|
|
|

| Autor |
Nachricht |
kaas
phpBB2.de User

Anmeldungsdatum: 03.02.2005
Beiträge: 20
|
Verfasst am:
Fr 04 Feb, 2005 10:28 |
  |
I want to sort my links by the link title as a standard when new users see my links.
How do I set the link title as standard? |
|
|
   |
 |
Google
|
Verfasst am:
|
 |
|
|
 |
kaas
phpBB2.de User

Anmeldungsdatum: 03.02.2005
Beiträge: 20
|
Verfasst am:
Fr 04 Feb, 2005 10:43 |
  |
I figured it out myself
open: links.php
find:
$mode = 'link_joined';
}
if(isset($HTTP_POST_VARS['order']))
{
$sort_order = ($HTTP_POST_VARS['order'] == 'ASC') ? 'ASC' : 'DESC';
}
else if(isset($HTTP_GET_VARS['order']))
{
$sort_order = ($HTTP_GET_VARS['order'] == 'ASC') ? 'ASC' : 'DESC';
}
else
{
$sort_order = 'DESC';
}
Replace with:
$mode = 'link_title';
}
if(isset($HTTP_POST_VARS['order']))
{
$sort_order = ($HTTP_POST_VARS['order'] == 'ASC') ? 'ASC' : 'DESC';
}
else if(isset($HTTP_GET_VARS['order']))
{
$sort_order = ($HTTP_GET_VARS['order'] == 'ASC') ? 'ASC' : 'DESC';
}
else
{
$sort_order = 'ASC';
} |
|
|
   |
 |
kaas
phpBB2.de User

Anmeldungsdatum: 03.02.2005
Beiträge: 20
|
Verfasst am:
Fr 04 Feb, 2005 11:08 |
  |
But now I got a new problem
Why is it only possible to type 18 letters in the link title?
Is it possible to make the section longer? |
|
|
   |
 |
kaas
phpBB2.de User

Anmeldungsdatum: 03.02.2005
Beiträge: 20
|
Verfasst am:
Fr 04 Feb, 2005 18:56 |
  |
|
   |
 |
|
|
|
|
|
Nächstes Thema anzeigen
Vorheriges Thema anzeigen
Du kannst keine Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum nicht antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen. Du kannst Dateien in diesem Forum posten Du kannst Dateien in diesem Forum herunterladen
|
|
| |