tset class for unordered list and its items - cosmo - front and backend for Markov-Chain Monte Carlo inversion of cosmogenic nuclide concentrations
 (HTM) git clone git://src.adamsgaard.dk/cosmo
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 23c947eb7a84cf4e83de5968cc4baaa278b0b338
 (DIR) parent 05fbddc084ca8c20c4e3b844429a70be4bccbd38
 (HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
       Date:   Wed, 21 Oct 2015 13:06:58 +0200
       
       set class for unordered list and its items
       
       Diffstat:
         M uploadhistory.php                   |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/uploadhistory.php b/uploadhistory.php
       t@@ -115,12 +115,12 @@ if (count($missing_fields) > 0) {
        
                // text before list of field names
                if ($i == 0 && count($missing_fields) == 1) {
       -            $error_msg .= '<p>The following value is missing: <ul>';
       +            $error_msg .= '<p>The following value is missing: <ul class="collection">';
                } elseif ($i == 0) {
       -            $error_msg .= '<p>The following values are missing: <ul>';
       +            $error_msg .= '<p>The following values are missing: <ul class="collection">';
                }
        
       -        $error_msg .= '<li>' . $missing_fields[$i] . '</li>';
       +        $error_msg .= '<li class="collection-item">' . $missing_fields[$i] . '</li>';
            }
            $error_msg .= '</ul></p><p>Please <a href="javascript:history.back()">go' .
               ' back</a> and fill in the missing fields.</p></div></div></main>';