mirror of
https://github.com/KevinMidboe/rohnenedre.git
synced 2025-12-08 20:39:02 +00:00
9 lines
194 B
PHP
9 lines
194 B
PHP
<?php
|
|
|
|
if (class_exists('AWeberAPI')) {
|
|
trigger_error("Duplicate: Another AWeberAPI client library is already in scope.", E_USER_WARNING);
|
|
}
|
|
else {
|
|
require_once('aweber.php');
|
|
}
|