Ignore:
Timestamp:
Nov 14, 2014, 11:02:22 PM (9 years ago)
Author:
ddtddt
Message:
 
Location:
extensions/see_photos_by_user
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/see_photos_by_user/include/function.see.inc.php

    r30415 r30497  
    1010        $row = pwg_db_fetch_assoc($result);
    1111        $username = str_replace(' ','_',$row['username']);
    12 
     12        $username = str_replace('.','_',$username);
    1313return $username;
    1414}
  • extensions/see_photos_by_user/main.inc.php

    r30429 r30497  
    4242                if (in_array($testd[0], $userok)) {
    4343                    $me = 'user-' . $testd[0].'-'.$username;
    44                     $page['section_title'] = '<a href="' . get_absolute_root_url() . '">' . l10n('Home') . '</a>' . $conf['level_separator'] . '<a href="' . get_absolute_root_url() . 'index.php?/user-">' . l10n('Users').'</a>'. $conf['level_separator'] . '<a href="' . get_absolute_root_url() . 'index.php?/' . $me . '">'.$row['username'] . '</a>';
     44                    $page['section_title'] = '<a href="' . get_absolute_root_url() . '">' . l10n('Home') . '</a>' . $conf['level_separator'] . '<a href="' . get_absolute_root_url() . 'index.php?/user-">' . l10n('Users').'</a>'. $conf['level_separator'] . '<a href="' . get_absolute_root_url() . 'index.php?/' . $me . '">'.$username . '</a>';
    4545                } else {
    4646                    $me = 'user-';
Note: See TracChangeset for help on using the changeset viewer.