Changeset 1333371
- Timestamp:
- 01/22/2016 02:50:48 AM (10 years ago)
- Location:
- wp-legisearch/trunk/DataClasses
- Files:
-
- 2 edited
-
Bill.class.php (modified) (1 diff)
-
Vote.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-legisearch/trunk/DataClasses/Bill.class.php
r1333363 r1333371 58 58 switch( $name ) { 59 59 case 'description': 60 return $this->_ls_data->$name;60 return stripslashes( $this->_ls_data->$name ); 61 61 break; 62 62 case 'state_name': // Special case - we like user-friendly state names sometimes -
wp-legisearch/trunk/DataClasses/Vote.class.php
r1279167 r1333371 36 36 case 'bill_os_id': 37 37 if ( $this->_ls_data ) { 38 return $this->_ls_data->$name;38 return stripslashes( $this->_ls_data->$name ); 39 39 } 40 40 else {
Note: See TracChangeset
for help on using the changeset viewer.