Skip to content

Commit

Permalink
Photo Hack Day NYC 2011
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Schonfeld committed Aug 20, 2011
1 parent dc6cf42 commit ceb74a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion config/face.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

$config['FACE_NAME'] = "";
$config['FACE_KEY'] = "";
$config['FACE_SECRET'] = "";
Expand Down
6 changes: 3 additions & 3 deletions libraries/Face.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ public function __construct($params)
$this->_ci->load->config('face', TRUE);

//get settings from config
$this->name = $this->_ci->config->item('FACE_NAME', 'face');
$this->key = $this->_ci->config->item('FACE_KEY', 'face');
$this->secret = $this->_ci->config->item('FACE_SECRET', 'face');
$this->name = $this->_ci->config->item('FACE_NAME', 'face');
$this->key = $this->_ci->config->item('FACE_KEY', 'face');
$this->secret = $this->_ci->config->item('FACE_SECRET', 'face');

//initialize the client
$this->_face = new FaceRestClient($this->key, $this->secret);
Expand Down

0 comments on commit ceb74a4

Please sign in to comment.