Changeset 5938


Ignore:
Timestamp:
01/15/12 16:24:40 (4 months ago)
Author:
vain
Message:
  • ordered list for the errormessage, removed css border from the error icon
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/installation/index.php

    r5910 r5938  
    803803         */ 
    804804        $errormessage .= '<fieldset class="error_beige">'; 
    805         $errormessage .= '<div style="float: left; margin: 5px; margin-right: 25px; border:1px inset #bf0000; padding: 20px;">'; 
     805        $errormessage .= '<div style="float:left; padding: 15px;">'; 
    806806        $errormessage .= '<img src="images/Clansuite-Toolbar-Icon-64-error.png" style="border: 2px groove #000000;" alt="Clansuite Error Icon" /></div>'; 
    807807        $errormessage .= '<legend>Clansuite Installation Error</legend>'; 
     
    829829        $errormessage .= '<fieldset class="error_beige">'; 
    830830        $errormessage .= '<legend>Help</legend>'; 
    831         $errormessage .= '<p>'; 
    832         $errormessage .= '1) You might use <a href="phpinfo.php">phpinfo()</a> to check your serversettings. <br />'; 
     831        $errormessage .= '<ol>'; 
     832        $errormessage .= '<li>You might use <a href="phpinfo.php">phpinfo()</a> to check your serversettings.</li>'; 
    833833 
    834834        if( get_cfg_var('cfg_file_path') ) 
     
    836836            $cfg_file_path = get_cfg_var('cfg_file_path'); 
    837837        } 
    838         $errormessage .= '2) Check your php.ini ('. $cfg_file_path .') and ensure all needed extensions are loaded. '; 
    839         $errormessage .= 'After a modification of your php.ini you must restart your webserver.<br />'; 
    840  
    841         $errormessage .= '3) Check the webservers errorlog.</p><p>'; 
     838        $errormessage .= '<li>Check your php.ini ('. $cfg_file_path .') and ensure all needed extensions are loaded. <br />'; 
     839        $errormessage .= 'After a modification of your php.ini you must restart your webserver.</li>'; 
     840 
     841        $errormessage .= '<li>Check the webservers errorlog.</li></ol><p>'; 
    842842        $errormessage .= "If you can't solve the error yourself, feel free to contact us at our website's <a href=\"http://forum.clansuite.com/index.php?board=25.0\">Installation - Support Forum</a>.<br/>"; 
    843843        $errormessage .= '</p></fieldset>'; 
Note: See TracChangeset for help on using the changeset viewer.