Browse the code
| Differences between 218 and 219 on /trunk/inc/modules/users/views/show.php. | |||||||
|---|---|---|---|---|---|---|---|
| Number of edited files: | 1 (0 added, 0 deleted and 1 modified) | ||||||
| Author: | xbright | ||||||
| Log message: | * Added the ability to show E_NOTICE within the ErrorHandler (disabled by default) * Fixed a lot of issues related to E_NOTICE * Removed OpenID |
||||||
| Date: | 2009-04-26 01:30:05 | ||||||
|
|||||||
| Old | New | Code |
|---|---|---|
| 75 | 75 |
foreach (array('projects', 'projects_admins') as $type)
|
| 76 | 76 |
{
|
| 77 | 77 |
$projects_ = $classadm->getAdmins($user_obj->getId(), 'user', $type); |
| 78 | ||
| 78 | 79 |
foreach ($projects_ as $prj) |
| 79 |
$projects->appendChild($xml->createElement('project', $prj['dbname']));
| |
| 80 |
if (isset($prj['dbname']))
| |
| 81 |
$projects->appendChild($xml->createElement('project',
| |
| 82 |
$prj['dbname'])); | |
| 80 | 83 |
} |
| 81 | 84 |
$user->appendChild($projects); |
| 82 | 85 | |
| 174 | 177 |
'browse/category/'.$cat.'">'.$categories[$cat]. |
| 175 | 178 |
'</a>'; |
| 176 | 179 | |
| 177 |
if ($category == $catarray[0].'-'.$catarray[$j+1]) | |
| 180 |
if (count($catarray) > 1 && $j == 0)
| |
| 178 | 181 |
$prj['category'] .= ' » '; |
| 179 | 182 |
} |
| 180 | 183 | |
| 181 | 184 |

CodingTeam