Former student cons $1,000 in allocations

A male was issued a $1,000 check after misrepresenting himself as the student leader of an organization affiliated with the university, according to an incident report filed Jan. 30. It was later discovered that the

A male was issued a $1,000 check after misrepresenting himself as the student leader of an organization affiliated with the university, according to an incident report filed Jan. 30. It was later discovered that the male had withdrawn from the university on Oct. 29.

In order to make a check request, no [Owl Card] is needed. Also, there is no database connecting student participation in organizations with enrollment,” Dean of Students Ainsley Carry said.

Due to the ongoing investigation, the former student’s name and the name of the organization which he was a part of could not be released.

Students from a particular organization can be reimbursed if they have a receipt and the correct form. Allocations for each organization are determined by Temple Student Government.  TSG also decides what the money can be used for, but the organization does not handle actual money. Representatives from TSG declined to be interviewed.

The incident report was referred to the Economic Fraud Unit of the Philadelphia Police Department. The department could not comment due to the ongoing investigation.

Abigail Shepherd can be reached at abigail.shepherd@temple.edu.

1 Comment

  1. Several tihgns are amiss here. First of all I was very confused about the example you showed above (which is in Domscripting the book). This is very verbose and has an extra if in there that is not needed. Here is the logic:- loop trough all tables – loop through rows in the table- highlight every second row – add a handler to the row to add another class when the mouse is over it. – add a handler to remove that class. The first step of the logic is broken, as a real data table should have a thead, where you explain what the colums are, a tbody which is the data and a tfoot which is the overall sum of the lot. Therefore you need to loop through tbody instead of table as you don’t want to alter the table header row. The odd/even test is not needed either as you are looping through an array. Therefore you can use the counter and the modulo “%” to stripe the table. So all in all:function stripe(){ var bodies = document.getElementsByTagName(‘tbody’); for (var i=0;i<bodies.length;i++){ var rows = document.getElementsByTagName(‘tr’); for (var j=0;j<rows.length;j++){ if(j % 2 == =0 ){ addClass(rows[j],’odd’); } rows[j].onmouseover = function(){ addClass(this,’over’); } rows[j].onmouseout = function(){ removeClass(this,’over’); } } } function addClass(o,c){ o.className = o.className?o.className+’ ‘+c:c; } function removeClass(o,c){ var re = new RegExp(‘\s?’+c); o.className = o.className.replace(re,”); }}This is quick and dirty though, I’d do it with event delegation or a real addHandler function, but it should get you on the way

Leave a Reply

Your email address will not be published.


*