Changeset 17506


Ignore:
Timestamp:
01/13/14 06:54:35 (11 years ago)
Author:
tose
Message:
Implements strict mode
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/control.php

    r17501 r17506  
    11<script language="javascript">
    2 
     2'use strict';
    33        var ctr;
    44       
     
    296296
    297297        newdiv.appendChild(newtable);
    298 
    299298        if(nextrow != null){   
    300299                var doc = document.getElementById(nextrow);
     
    307306function addRowClone(nextrow){
    308307<?php
    309 $fetch = mysql_query("SELECT * FROM schedule WHERE date(fStart) = '$days' ORDER BY fScheduleID ASC, fMeasurementID ASC") or die(mysql_error());
     308$fetch = mysql_query("SELECT * FROM schedule WHERE date(fStart) = '$days' ORDER BY fScheduleID AND fMeasurementID ASC") or die(mysql_error());
    310309$cnt3=0;
    311310$cnt2=0;
     
    314313//$data  = array();
    315314//$counter=0;
    316 $prevtimestamp = 0;
    317 
    318315        while($rows = mysql_fetch_array($fetch))
    319316        {
    320                 $scheduleId = $rows['fScheduleID'];
    321317                $timestamp=strtotime($rows['fStart']);
    322318                $timestamp2 = date('Y-m-d',$timestamp);
     
    371367                                        input_data.setAttribute("value","+"),
    372368                                        input_data.onclick = function(){
    373                                                 addRowClone1("list_<?php echo $cnt+1; ?>");
     369                                                addRowClone1("list_<?php echo $cnt; ?>");
    374370                                        }
    375371                                );
     
    458454                                        }
    459455                                );
    460                        
    461456                        newtr<?php echo $cnt; ?>.appendChild(newtd_c2);
    462457                        newtr<?php echo $cnt; ?>.appendChild(newtd_c3);
     
    464459                        newtr<?php echo $cnt; ?>.appendChild(newtd_c5);
    465460                        newInnertable.appendChild(newtr<?php echo $cnt; ?>);
     461                       
    466462                       
    467463                        var newtd_c6 = document.createElement("td");
     
    485481
    486482                        newdiv.appendChild(newtable);
    487 
    488483                        if(nextrow != null){   
    489484                                var doc = document.getElementById(nextrow);
    490485                                $(doc).after(newdiv);
    491                         } else {
     486                        }else{
    492487                                targetView.appendChild(newdiv);
    493488                                //$(targetView).after(newtr<?php echo $cnt; ?>);
     
    497492                       
    498493                $cnt++;
    499                 $prevtimestamp = $timestamp;
    500494        }
    501 
    502 
    503495if(mysql_num_rows($fetch)<1)
    504496{
Note: See TracChangeset for help on using the changeset viewer.