Skip to content

Commit

Permalink
change faculty 'Department' to 'About'
Browse files Browse the repository at this point in the history
  • Loading branch information
benthemonkey committed May 2, 2015
1 parent f7010ec commit 59c44b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ajax/PointsCenter.php
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public function getNicknames()
public function getFellows()
{
return self::fetchAllQuery(
"SELECT full_name,position,department,photo
"SELECT full_name,position,about,photo
FROM fellows
WHERE qtr_final IS NULL"
);
Expand Down
4 changes: 2 additions & 2 deletions fellowsTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<tr>
<th>Name</th>
<th>Position</th>
<th>Department</th>
<th>About</th>
<th>Photo</th>
</tr>
</thead>
Expand All @@ -22,7 +22,7 @@
<tr>
<td><?= $fellows[$ii]["full_name"] ?></td>
<td><?= $fellows[$ii]["position"] ?></td>
<td><?= $fellows[$ii]["department"] ?></td>
<td><?= $fellows[$ii]["about"] ?></td>
<td style="padding:0; width:100px;"><img src="./img/slivkans/<?= $fellows[$ii]["photo"] ?>" width="100px" /></td>
</tr>
<?php
Expand Down

0 comments on commit 59c44b4

Please sign in to comment.