Index: trunk/phase3/includes/User.php |
— | — | @@ -583,8 +583,9 @@ |
584 | 584 | # Check if we got if not failback to default skin |
585 | 585 | $sn = 'Skin'.$sn; |
586 | 586 | if(!class_exists($sn)) { |
587 | | - #FIXME : should we print an error message instead of loading |
588 | | - # standard skin ? |
| 587 | + # FIXME : should we print an error message instead of loading |
| 588 | + # standard skin ? Let's die for now. [AV] |
| 589 | + die("Class $sn doesn't exist in $IP/skins/$sn.php"); |
589 | 590 | $sn = 'SkinStandard'; |
590 | 591 | require_once( $IP.'/skins/Standard.php' ); |
591 | 592 | } |