Changeset - a935ca15be28
[Not reviewed]
default
0 2 0
Nathan Brink (binki) - 12 years ago 2013-10-30 08:50:24
ohnobinki@ohnopublishing.net
Add disclaimers about the autocompleted/saved_schedule data possibly being outdated.
2 files changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
inc/class.schedule.php
Show inline comments
 
@@ -909,24 +909,25 @@ class Schedule
 
      echo ' No permutations had';
 
    elseif (!$this->nPermutations)
 
      echo ' All permutations had';
 
    else
 
      echo ' Only ' . $this->nPermutations . ' permutation' . ($this->nPermutations == 1 ? '' : 's') . ' had no';
 
    echo ' scheduling conflicts.' . PHP_EOL
 
      . '</p>' . PHP_EOL;
 
    if ($this->created)
 
      echo ''
 
	. '<p id="created-time">' . PHP_EOL
 
	. '  Created <span class="cute-time">' . gmdate('c', $this->created) . '</span>.' . PHP_EOL
 
	. '</p>' . PHP_EOL;
 
    echo '<p><em>Please note that a saved schedule may have fallen out of sync with the course schedule as published by your registrar. To ensure that you are using up-to-date information, <a href="input.php">recreate your schedule</a>.</em></p>' . PHP_EOL;
 

	
 
    $outputPage->foot();
 
  }
 

	
 
  //--------------------------------------------------
 
  // Changes the title of the page.
 
  //--------------------------------------------------
 
  function changeTitle($t)
 
  {
 
    $this->title = $t;
 
  }
 

	
input.php
Show inline comments
 
@@ -265,25 +265,25 @@ if (!empty($_REQUEST['selectsemester']))
 
<?php if (!empty($input_warning_banner)): ?>
 
<div class="warning">
 
  <?php echo $input_warning_banner; ?>
 
</div>
 
<?php endif; ?>
 

	
 
<p>
 
  Welcome to SlatePermutate<?php $inputPage->addressStudent(', ', '', FALSE); ?>!
 
  <?php if (school_has_auto($inputPage->get_school())): ?>
 
  To get started, enter in a course identifier (e.g., <em>
 
  <?php echo empty($semester) || empty($semester['popular_course_id']) ? school_example_course_id($inputPage->get_school()) : $semester['popular_course_id']; ?></em>)
 
  and click the autosuggestion to automatically load available sections
 
  for each class.
 
  for each class. (Please note that autosuggestion data may occasionally fall out of sync with your registrar’s records).
 
  <?php else: ?>
 
  To get started, enter a course number and add some sections to it.
 
  Then specify each section's letter/number and what times it meets,
 
  add more courses, and click &ldquo;Find a Schedule&rdquo;.
 
  <!--'-->
 
  <?php endif; ?>
 
</p>
 

	
 
<form method="post" action="process.php" id="scheduleForm">
 
<p class="nospace" style="border-left: 5px solid #999; padding-left: 5px!important; padding-top: 5px!important;"><label>Schedule Name</label><br />
 
<input
 
    id="scheduleName"
0 comments (0 inline, 0 general)